> What are the html equivalents of @qq{…} and @q{…}? There is no stand-alone equivalent to `@q`. If you write
``` <q>foo</q> ``` it gets converted by `pandoc` to ``` ``foo'' ``` which `makelsr.pl` in turn converts to `@qq{foo}`. You get ``` `foo' ``` only for the inner quote environment if you use `<q> ... <q> ... </q> ... </q>`. This is not handled by `makelsr.pl` but it could be added. Werner