algorithms.mdwn 1.2 KB

1234567891011121314151617181920
  1. Make flexible algorithm/pseudocode formatting! Find some good solution with a
  2. readable source form and highlighted formatted result. Could be to create some
  3. new format (based on a new ontology, of course), define conversion to at least
  4. HTML (markdown could work too, I guess) and make an ikiwiki plugin. Maybe
  5. writing in a general-enough subset of Python can work too. Also LaTeX has nice
  6. packages:
  7. [[!wikibooks LaTeX/Algorithms#Typesetting_using_the_algorithmicx_package]].
  8. - Also, if there's no better solution, I can just for now use markdown directly
  9. and make it look more or less like this:
  10. <http://users.csc.calpoly.edu/~jdalbey/SWE/pdl_std.html>. But for this I need
  11. to use monospace font. If not possible with ikiwiki I can use HTML or even
  12. create an *algorithm* template which does that. Or... wait. Do code blocks not
  13. cause monospace already? It should be good enough. It lools just like the
  14. formatting gitweb does. Should work. Just indent the text so it becomes a
  15. Markdown code block.
  16. - Another option is to use just highlighting, either writing in a language like
  17. Python or by defining a new one for use with ikiwiki's highlight plugin:
  18. <http://www.andre-simon.de/doku/highlight/en/highlight.php#ch3>.