diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-08-22 00:59:41 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-08-22 00:59:41 +0000 |
commit | f760fcfa3fe4660831f30651c203c3c9686c7bae (patch) | |
tree | c9f435ebee43f54f9ceba70c1eda172454b2fe0c /doc | |
parent | 7946c67d1f7538a2b131c7b79205527f86e9002c (diff) | |
download | ikiwiki-f760fcfa3fe4660831f30651c203c3c9686c7bae.tar ikiwiki-f760fcfa3fe4660831f30651c203c3c9686c7bae.tar.gz |
* Added tex plugin to generate images from latex code.
Contributed by Patrick Winnertz as a GSoC project.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/plugins/tex.mdwn | 8 | ||||
-rw-r--r-- | doc/todo/latex.mdwn | 24 |
2 files changed, 31 insertions, 1 deletions
diff --git a/doc/plugins/tex.mdwn b/doc/plugins/tex.mdwn new file mode 100644 index 000000000..aebac26ed --- /dev/null +++ b/doc/plugins/tex.mdwn @@ -0,0 +1,8 @@ +[[template id=plugin name=tex author="[[PatrickWinnertz]]"]] +[[tag type/chrome type/slow]] + +This plugin renders LaTeX code into an image and inserts it into the page. + +# examples + + \[[tex code="\ce{[Cu(NH3)3]^{2+}}"]] diff --git a/doc/todo/latex.mdwn b/doc/todo/latex.mdwn index 981c07564..f23f0a254 100644 --- a/doc/todo/latex.mdwn +++ b/doc/todo/latex.mdwn @@ -162,7 +162,29 @@ Mh... not really fixed :S I added it into the return but it is somehow ignored. Okay, the last version of the tex plugin for ikiwiki can be downloaded [here](https://www.der-winnie.de/~winnie/gsoc07/tex.pm). +> I've looked this over, fixed the indenting, fixed some variable names +> ("$foo" is a bad variable name), removed a gratuotuous use of `tie`, +> fixed a bug (the first time it was run, it tried to write the png file +> before the teximages/ directory existed) and checked the result in. +> +> Can you please flesh out [[plugins/tex]] with +> whatever documentation people who know tex will expect to see? +> +> Also, please review my changes. In particular, I changed the @badthings +> array to use qr//, which is much clearer, but it needs to be tested that +> I didn't break the checking code when I did it. It would be nice to write +> a test case that tries to feed it bad code and makes sure it rejects it. +> +> Question: does it really make sense to have an alt tag for the image +> that contains the tex code? Will that make any sense when browsing +> without images? +> +> Note: I removed the style= attribute, since as I've told you, the +> htmlsanitizer strips those since they can be used to insert javascript. I +> put in a class=teximage instead; the style sheet could be modified to +> style that, if you want to send a patch for that. +> +> --[[Joey]] [[tag soc]] - [[tag wishlist]] |