There is missing tinydocctohtml implementation in tinydoc script in STK 3.1, here is that function:
tinydocctohtml() {
# convert C to HTML
sed \
-e 's/int /<b>int <\/b>/g' \
-e 's/void /<b>void <\/b>/g' \
-e 's/signed /<b>signed <\/b>/g' \
-e 's/unsigned /<b>unsigned <\/b>/g' \
-e 's/short /<b>short <\/b>/g' \
-e 's/char\*/<b>char\*<\/b>/g' \
-e 's/long /<b>long <\/b>/g' \
-e 's/bool /<b>bool <\/b>/g' \
-e 's/float /<b>float <\/b>/g' \
-e 's/double /<b>double <\/b>/g' \
-e 's/char /<b>char <\/b>/g' \
-e 's/\[/<b><font color="green" style="bold">\[<\/font><\/b>/g' \
-e 's/\]/<b><font color="green" style="bold">\]<\/font><\/b>/g' \
-e 's/(/<b><font color="green" style="bold">(<\/font><\/b>/g' \
-e 's/)/<b><font color="green" style="bold">)<\/font><\/b>/g' \
-e 's/,/<b><font color="green" style="bold">,<\/font><\/b>/g' \
| sed '/ /{s/(/<\/i>(/}' | sed 's/ / <i>/' | sed 's/(/ (/g'
}
Logged In: YES
user_id=1370048
Originator: YES
You should also add:
-e 's/^ $//' \
Before first -e line to eliminate bug with unclosed <i> tag