I ran into this too just a few moments ago. There's a bug in
``/home/work/incubator-superset/superset/utils.py`` within the Docker image.
This patch fixes the issue:
```diff
--- /tmp/utils.py 2018-09-22 23:09:23.168916170 +0000
+++ /home/work/incubator-superset/superset/utils.py 2018-09-22
23:09:28.559916297 +0000
@@ -420,7 +420,7 @@
'li', 'dd', 'dt', 'img', 'a']
safe_markdown_attrs = {'img': ['src', 'alt', 'title'],
'a': ['href', 'alt', 'title']}
- s = md.markdown(s or '', [
+ s = md.markdown(s or '', extensions=[
'markdown.extensions.tables',
'markdown.extensions.fenced_code',
'markdown.extensions.codehilite',
```
[ Full content available at:
https://github.com/apache/incubator-superset/issues/5958 ]
This message was relayed via gitbox.apache.org for [email protected]