I need a tool for generating html files. I tried to use scribble, but I could not figure out how to make it work. Here is a simple example:
#lang scribble/base
@image{"
http://strues.org/cgi-bin/chem.cgi?bezene"}
When I run this script, I get an error message saying that there is no such a file. Of course, there is no such a file; it will be generated by the chem.cgi program.
I also tried to insert an html tag into the document:
@(list "<img src=\"
http://strues.org/cgi-bin/chem.cgi?bezene\"/>")
The problem is that scribble replaces < form every instance of <
Therefore, is there another markup language besides scribble?