summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilip Lajszczak <filip@lajszczak.dev>2022-10-02 09:01:25 +0000
committerDavid Thompson <dthompson@vistahigherlearning.com>2022-10-02 09:56:39 -0400
commit94e8fe134f28296da0f01bd69428783aa06ee205 (patch)
tree3435a1c179a4e4dea6f2e0f456dc89393f21505e
parent6334b88896378c02b10b042b8e1afd9fdadfea14 (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--README6
1 files changed, 4 insertions, 2 deletions
diff --git a/README b/README
index bfafa2c..7b4ee3e 100644
--- a/README
+++ b/README
@@ -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