add: plugins

This commit is contained in:
trisua 2025-05-31 12:42:23 -04:00
parent 149025f9e4
commit d71dc7e7ca
7 changed files with 161 additions and 47 deletions

4
examples/plugins.lisp Normal file
View file

@ -0,0 +1,4 @@
(h1 (say_hi)) ; plugins with no parameters
(say_hi_with_params (text "jeff")) ; plugins with parameters
(pre (say_hi_multiple (text "abcd") (text "xyz"))) ; mutliple parameters in plugins
(pre (code (read_file (text ".gitignore")))) ; slightly more advanced plugins