3bmd

所属分类:collect
开发工具:Common Lisp
文件大小:0KB
下载次数:0
上传日期:2023-07-04 15:19:24
上 传 者sh-1993
说明:  CL中使用esrap解析器的标记处理器,
(markdown processor in CL using esrap parser,)

文件列表:
3bmd-ext-code-blocks.asd (964, 2023-08-12)
3bmd-ext-definition-lists.asd (854, 2023-08-12)
3bmd-ext-math.asd (246, 2023-08-12)
3bmd-ext-tables.asd (752, 2023-08-12)
3bmd-ext-wiki-links.asd (786, 2023-08-12)
3bmd-tests.asd (2527, 2023-08-12)
3bmd-youtube-tests.asd (434, 2023-08-12)
3bmd-youtube.asd (248, 2023-08-12)
3bmd.asd (503, 2023-08-12)
LICENSE (1074, 2023-08-12)
code-blocks.lisp (13865, 2023-08-12)
definition-lists.lisp (7572, 2023-08-12)
extensions.lisp (4228, 2023-08-12)
markdown-printer.lisp (10639, 2023-08-12)
math.lisp (1596, 2023-08-12)
package.lisp (1074, 2023-08-12)
parser.lisp (26574, 2023-08-12)
plain-printer.lisp (3570, 2023-08-12)
printer.lisp (12132, 2023-08-12)
pygmentize.py (2951, 2023-08-12)
smart-quotes.lisp (2923, 2023-08-12)
tables.lisp (8000, 2023-08-12)
tests/ (0, 2023-08-12)
tests/extensions/ (0, 2023-08-12)
tests/extensions/code-blocks.lisp (1849, 2023-08-12)
tests/extensions/definition-lists.lisp (1972, 2023-08-12)
tests/extensions/smart-quotes.lisp (2502, 2023-08-12)
tests/extensions/tables.lisp (4263, 2023-08-12)
tests/extensions/wiki-links.lisp (468, 2023-08-12)
tests/grammar/ (0, 2023-08-12)
tests/grammar/blocks/ (0, 2023-08-12)
tests/grammar/blocks/block-quote.lisp (2383, 2023-08-12)
tests/grammar/blocks/bullet-list.lisp (2724, 2023-08-12)
tests/grammar/blocks/heading.lisp (2794, 2023-08-12)
tests/grammar/blocks/horizontal-rule.lisp (1103, 2023-08-12)
... ...

Common Lisp [Markdown][] -> html converter, using [esrap][] for parsing, and grammar based on [peg-markdown][]. Currently a bit slow and uses lots of RAM for large documents (particularly when using the top-level `doc` parser instead of reading documents as a sequence of `block`s), but seems to handle the tests from [peg-markdown] reasonably well. Note that this library processes [Markdown][] and not the newer (and better specified) [CommonMark][], so may not behave quite as expected for people used to the latter. See [issue #53](https://github.com/3b/3bmd/issues/53) for some discussion on why CommonMark support isn't currently planned, and would probably be in a separate library if it were implemented. todo: * clean up API * figure out how to automate testing (closure-html + `tree-equal`? need some way to normalize whitespace though), and add tests * optimize grammar * optimize esrap [markdown]: http://daringfireball.net/projects/markdown/ [esrap]: https://github.com/nikodemus/esrap [peg-markdown]: https://github.com/jgm/peg-markdown [peg/leg]: http://piumarta.com/software/peg/peg.1.html [CommonMark]: https://commonmark.org/ ## Extensions: * If `3bmd:*smart-quotes*` is non-`NIL` while parsing, some extra patterns will be recognized and converted as follows (outside code blocks): * `'`single quoted strings`'` -> `‘` ... `’` like ‘single quoted string’ (with slightly ugly heuristics to avoid contractions) * other single quotes `'` -> `'` ' * `"`double quoted strings`"` -> `“` ... `”`, like “double quoted string” * ellipsis `...` or `. . .` -> `…`, … * en dash `--` -> `–`, – * em dash `---` -> `—`, — * left right arrow `<->` -> `↔`, ↔ * left arrow `<-` -> `←`, ← * right arrow `->` -> `→`, → * left right double arrow `<=>` -> `&hArr`, ⇔ * left double arrow `<=` -> `⇐`, ⇐ * right double arrow `=>` -> `⇒`, ⇒ * Loading `3bmd-ext-wiki-links.asd` adds support for parsing simple `[[]]` style wiki links: If `3bmd-wiki:*wiki-links*` is non-`NIL` while parsing, wiki links of the form `[[foo]]` or `[[foo|...]]` will be parsed, where `...` is one or more optional args separated by `|` characters. By default, wiki links will just print the `foo` part as normal text. To integrate into an actual wiki, users should bind `3bmd-wiki:*wiki-processor*` during printing, and define a method on `3bmd-wiki:process-wiki-link` that specializes on the value of `3bmd-wiki:*wiki-processor*` to create an HTML link from the `foo` and arguments. (API subject to change.) * Loading `3bmd-ext-code-blocks.asd` adds support for github style fenced code blocks, with `colorize` support: If `3bmd-code-blocks:*code-blocks*` is non-`NIL` while parsing, in addition to normal indented verbatim blocks, ```` ``` ```` can be used to delimit blocks of code: ``` This block doesn't specify a language for colorization ``` or ```lisp ;;; this block will be colorized as Common Lisp (defun foo (bar) (list bar)) ``` Language names ignore case and whitespace, so `Common Lisp` and `commonlisp` are treated the same, see `3bmd-code-blocks:*colorize-name-map*` for full list of supported language names, or add names to that to recognize a custom colorize `coloring-type`. If a language name is not specified after the opening ```` ``` ````, `3bmd-code-blocks:*code-blocks-default-colorize*` can be set to one of the keywords naming a `coloring-type` recognized by `colorize` to specify a default, otherwise the block will not be colorized. Can optionally use `Pygments` instead of `colorize` by setting `3bmd-code-blocks:*renderer*` to `:pygments`. Lexer and formatter options (`-O`) can be specified like ```` ```c++|linenos=1````. Some attempt has been made to avoid interpretation of the options by the shell when calling `pygmentize`, but you should probably audit the code and test the interaction with the implementation of `uiop:run-program` on your implementation of choice before using it on untrusted input. Pygments html formatter creates arbitrary files when passed `-Ofull,cssfile=filename`, so parameters with the substring `cssfile` are ignored (`noclobber_cssfile=True` is also set by default, but that only prevents overwriting, not creation). Users with untrusted input may want to audit that as well to make sure there are no other dangerous options or ways to get around the exact substring check. Can optionally use [`Chroma`](https://github.com/alecthomas/chroma) instead of `colorize` or `Pygments` by setting `3bmd-code-blocks:*renderer*` to `:chroma`. Change the embedded theme of the `:chroma` code block via `3bmd-code-blocks:*chroma-style*`. The various styles for Chroma can be viewed via `chroma --list`. If no highlighting is desired, in case of using a JavaScript highlighter, it is possible to specify `:nohighlight` as `3bmd-code-blocks:*renderer*`. In this case the `pre` tags `class` attribute is rendered with the defined language. So: ``` ```lisp (defun foo ()) ``` Is rendered as: ```
...
``` To change the format used for rendering the `class` attribute value you can set a different format to `*code-blocks-pre-class-format*` which defaults to `~a` in order to render the language as parsed from the triple ticks block. I.e.: setting the format `(setf 3bmd-code-blocks:*code-blocks-pre-class-format* "brush: ~a;")` will render: ```
...
``` Inline code spans (like `` `this` ``) can also be optionally highlighted with `3bmd-ext-code-blocks`. Set `3bmd-code-blocks:*render-code-spans*` to true, and set `3bmd-code-blocks:*render-code-spans-lang*` to the desired language. * Loading `3bmd-ext-definition-lists.asd` adds support for parsing PHP Markdown Extra style definition lists: If `3bmd-definition-lists:*definition-lists*` is non-`NIL` while parsing, the following definition list will be recognized (see ): Term : definition * Loading `3bmd-ext-tables.asd` adds support for parsing PHP Markdown Extra style tables: If `3bmd-tables:*tables*` is non-`NIL` while parsing, the following will be recognized as tables (see ): | Content Cell | Content Cell | | Content Cell | Content Cell | | First Header | Second Header | | ------------- | ------------- | | Content Cell | Content Cell | | Content Cell | Content Cell | | Name | Description | | ------------- | ----------- | | Help | Display the help window.| | Close | Closes a window | | Left-Aligned | Center Aligned | Right Aligned | | :------------ |:---------------:| -----:| | col 3 is | some wordy text | $1600 | | col 2 is | centered | $12 | | zebra stripes | are neat | $1 | The following simplified table style is not supported, because it is ambiguous, especially, without heading: ``` First Header | Second Header ------------- | ------------- Content Cell | Content Cell Content Cell | Content Cell ``` * Loading `3bmd-youtube.asd` adds support for embedding youtube videos. If `3bmd-youtube:*youtube-embeds*` is non-`NIL` while parsing, the shorthand syntax `!yt[video-id(|options)]` can be used. For example: !yt[nbY-meOL57I] !yt[nbY-meOL57I|width=20,allowfullscreen]" * Loading `3bmd-ext-math.asd` adds support for math markup with libraries like MathJax. If `3bmd-math:*math*` is non-`NIL` while parsing, the shorthand syntax `$$ latex markup $$` can be used. For example: $$ \frac{\partial E}{\partial y} = \frac{\partial }{\partial y} \frac{1}{n}\sum_{i=1}^{n} (y_i - a_i)^2 $$

近期下载者

相关文件


收藏者