diff options
author | Filip Lajszczak <filip@lajszczak.dev> | 2022-10-02 09:01:25 +0000 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2022-10-02 09:56:39 -0400 |
commit | 94e8fe134f28296da0f01bd69428783aa06ee205 (patch) | |
tree | 3435a1c179a4e4dea6f2e0f456dc89393f21505e | |
parent | 6334b88896378c02b10b042b8e1afd9fdadfea14 (diff) |
README: Update to match current state
* Updates list of covered languages
* Makes example consistent with the one in project discription on the
dthompson.us
-rw-r--r-- | README | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -7,6 +7,8 @@ converted to HTML (via SXML) or any other format for rendering. * Supported Languages + - C + - CSS - Scheme - XML @@ -22,14 +24,14 @@ converted to HTML (via SXML) or any other format for rendering. ;; Get raw highlights list. (define highlighted-code - (highlight scheme-highlighter code)) + (highlight lex-scheme code)) ;; Convert to SXML. (define highlighted-sxml (highlights->sxml highlighted-code)) ;; Write HTML to stdout. - (display (sxml->xml highlighted-sxml)) + (sxml->xml highlighted-sxml) (newline) #+END_SRC |