npgrosser / logseq-diagrams-as-code

Logseq plugin that lets you create diagrams from textual representation (aka 'Diagrams as Code'). It supports a wide range of diagram types and languages, including Mermaid, Graphviz, PlantUML, and many more.
MIT License
173 stars 10 forks source link

Allow a per-renderer macros file #22

Open m-yaghini opened 1 year ago

m-yaghini commented 1 year ago

Hello, and thanks a lot for making this so user-friendly,

Now that kroki and this plugin support tikz, I can put my old diagrams into my notes finally. However, this requires me to copy and paste my boilerplate preamble code (macros.tex) in every cell that I put in the notebook. This is clearly inefficient.

Similar libraries (for instance katex) allow to define preamble. Could this be added to the plugin? I'm thinking maybe another entry to the logseq/settings/logseq-diagrams-as-code.json file named latex_preamble.

This could be extended to a postamble too; which would allow us not to specify a document at all. Always load libraries and macros necessary + \begin{document} in the preamble and a bunch of additional commands plus a \end{document} to the postamble. From that point onwards, all one needs to put in the notes in \begin{tikzfigure} .... \end{tikzfigure}.

npgrosser commented 1 year ago

Hey, thanks for the suggestion. That definitely sounds useful. I will think about adding this as a general feature (not only limited to latex/tikz)