项目作者: 1ambda

项目描述 :
Markdown Spell for Apache Zeppelin
高级语言: JavaScript
项目地址: git://github.com/1ambda/zeppelin-markdown-spell.git
创建时间: 2017-02-11T01:30:51Z
项目社区:https://github.com/1ambda/zeppelin-markdown-spell

开源协议:

下载


zeppelin-markdown-spell

Parse markdown text using markdown-it with

Usage

  1. Enable zeppelin-markdown-spell in the /helium page
  2. Use %markdown magic in notebooks

Screenshots


Text for testing

  1. # h1 Heading 8-)
  2. ## Horizontal Rules
  3. ___
  4. ## Tables
  5. Right aligned columns
  6. | Option | Description |
  7. | ------:| -----------:|
  8. | data | path to data files to supply the data that will be passed into templates. |
  9. | engine | engine to be used for processing templates. Handlebars is the default. |
  10. | ext | extension to be used for dest files. |
  11. ## Links
  12. [link text](http://dev.nodeca.com)
  13. [link with title](http://nodeca.github.io/pica/demo/ "title text!")
  14. ## Images
  15. ![Stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg "The Stormtroopocat")
  16. Like links, Images also have a footnote style syntax
  17. ![Alt text][id]
  18. With a reference later in the document defining the URL location:
  19. [id]: https://octodex.github.com/images/dojocat.jpg "The Dojocat"
  20. ## Plugins
  21. The killer feature of `markdown-it` is very effective support of
  22. [syntax plugins](https://www.npmjs.org/browse/keyword/markdown-it-plugin).
  23. ### [Emojies](https://github.com/markdown-it/markdown-it-emoji)
  24. > Classic markup: :wink: :crush: :cry: :tear: :laughing: :yum:
  25. >
  26. > Shortcuts (emoticons): :-) :-( 8-) ;)
  27. see [how to change output](https://github.com/markdown-it/markdown-it-emoji#change-output) with twemoji.
  28. ### [Subscript](https://github.com/markdown-it/markdown-it-sub) / [Superscript](https://github.com/markdown-it/markdown-it-sup)
  29. - 19^th^
  30. - H~2~O
  31. ### [\<ins>](https://github.com/markdown-it/markdown-it-ins)
  32. ++Inserted text++
  33. ### [\<mark>](https://github.com/markdown-it/markdown-it-mark)
  34. ==Marked text==
  35. ### [Footnotes](https://github.com/markdown-it/markdown-it-footnote)
  36. Footnote 1 link[^first].
  37. Footnote 2 link[^second].
  38. Inline footnote^[Text of inline footnote] definition.
  39. Duplicated footnote reference[^second].
  40. [^first]: Footnote **can have markup**
  41. and multiple paragraphs.
  42. [^second]: Footnote text.
  43. ### [Definition lists](https://github.com/markdown-it/markdown-it-deflist)
  44. Term 1
  45. : Definition 1
  46. with lazy continuation.
  47. Term 2 with *inline markup*
  48. : Definition 2
  49. { some code, part of Definition 2 }
  50. Third paragraph of definition 2.
  51. _Compact style:_
  52. Term 1
  53. ~ Definition 1
  54. Term 2
  55. ~ Definition 2a
  56. ~ Definition 2b
  57. ### [Abbreviations](https://github.com/markdown-it/markdown-it-abbr)
  58. This is HTML abbreviation example.
  59. It converts "HTML", but keep intact partial entries like "xxxHTMLyyy" and so on.
  60. *[HTML]: Hyper Text Markup Language
  61. ### [Custom containers](https://github.com/markdown-it/markdown-it-container)
  62. ::: warning
  63. *here be dragons*
  64. :::

License