From a85434699abccf79b7383fc7ec9106c61f52fb00 Mon Sep 17 00:00:00 2001 From: Elara Musayelyan Date: Tue, 31 Oct 2023 21:48:20 -0700 Subject: [PATCH] Add note about salixmd --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 6428ce2..ff1ca0a 100644 --- a/README.md +++ b/README.md @@ -213,6 +213,10 @@ Salix's `in` operator allows you to check if a slice or array contains a specifi #("H" in "Hello") ``` +## Markdown + +Salix doesn't include a markdown rendering tag because I didn't want any non-stdlib dependencies. Instead, there's an implementation of a markdown salix tag using [goldmark](https://github.com/yuin/goldmark) at https://pkg.go.dev/go.elara.ws/salixmd. + ## Acknowledgements - [Pigeon](https://github.com/mna/pigeon): Salix uses a [PEG](https://en.wikipedia.org/wiki/Parsing_expression_grammar) parser generated by pigeon. Salix would've been a lot more difficult to write without it.