Browse Source

[notebook] Added markdown to base connectors

Enrico Berti 10 years ago
parent
commit
9dac1aa327
1 changed files with 1 additions and 1 deletions
  1. 1 1
      desktop/libs/notebook/src/notebook/connectors/base.py

+ 1 - 1
desktop/libs/notebook/src/notebook/connectors/base.py

@@ -100,7 +100,7 @@ def get_api(user, snippet, fs, jt):
     return SparkApi(user)
   elif interface == 'livy-batch':
     return SparkBatchApi(user)
-  elif interface == 'text':
+  elif interface == 'text' or interface == 'markdown':
     return TextApi(user)
   elif interface == 'mysql':
     return MySqlApi(user)