From 92d4517902a85d81410039c99cdef7c518c0c538 Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 21 Jul 2025 23:14:59 +0200 Subject: [PATCH] Mon 21 Jul 22:43:21 CEST 2025 --- js/doc/README | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 js/doc/README diff --git a/js/doc/README b/js/doc/README new file mode 100644 index 0000000..d33870f --- /dev/null +++ b/js/doc/README @@ -0,0 +1,35 @@ +# 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 + +