36 lines
770 B
Plaintext
36 lines
770 B
Plaintext
# marked.js
|
|
|
|
https://github.com/markedjs/marked
|
|
https://marked.js.org/#/USING_PRO.md
|
|
|
|
Block level renderer methods:
|
|
code(string code, string language)
|
|
blockquote(string quote)
|
|
html(string html)
|
|
heading(string text, number level)
|
|
hr()
|
|
list(string body, boolean ordered)
|
|
listitem(string text)
|
|
paragraph(string text)
|
|
table(string header, string body)
|
|
tablerow(string content)
|
|
tablecell(string content, object flags)
|
|
|
|
Inline level renderer methods
|
|
|
|
strong(string text)
|
|
em(string text)
|
|
codespan(string code)
|
|
br()
|
|
del(string text)
|
|
link(string href, string title, string text)
|
|
image(string href, string title, string text)
|
|
text(string text)
|
|
|
|
|
|
# cli-table.js
|
|
|
|
https://github.com/Automattic/cli-table
|
|
|
|
|