Converting troff to HTML
August 13th, 2008 by Phil Hughes in
troff is a very sophisticated system so doing this right would be a lot of work. But, writing something to get rid of 90% of the grunt work of conversion is pretty easy. Paul Dunne did one for the ms macro set which you can find here but mm is different.
As awk was (and maybe still is) my favorite choice for one-shot "fix the data" programs, it got called to duty to do the task. Here is what I decided was worth it.
#!/usr/bin/awk -f
# troff -mm to HTML converter
# Phil Hughes--April 21, 1997
# Updates:
#
#
# This doesn't do everything and it is not intended to do everyting.
# It does what is easy. In particular, headers and the title is
# not mucked with. Also, center requests only center one line (I think).
#
# The goal here was to do the stuff that is a total pain to do by hand.
# This includes section numbering, font changes (which is still rather
# dumb) and lists. The output of this program should be considered
# a good starting point for making good HTML.
#
# Here is what is currently recognized:
# .H - deals with heading levels
# .P - maps to <p> (as does a blank line)
# .BL - maps to <ul>
# .AL - maps to <ol>
# .LE - maps to the end of the list of the type most recently started
# .LI - <li>
# .ds - tossed
# .ce - centers next line
# \fB, \f(HB, \fI, - changes to bold, bold or italic
# \fP - goes back to previous font
# \(em - --
# .PF, .PH - tossed
# \s - tossed
# That's all folks.
#
BEGIN {
BLANKS = " "
# beginning HTML crap
print "<html>"
print "<head>"
print "<title> ============</title>"
print "</head>"
print "<body>"
}
{ # always convert these things
# yes, there is a lot to add here
gsub(/\\\(em/, "--") # \em to --
gsub(/.\\".*$/, "") # trash comments
gsub(/.PF.*$/, "") # trash all sorts of headers & footers
gsub(/.PH.*$/, "") # trash all sorts of headers & footers
gsub(/\\s[0-9+-][1-9]?/, "") # trash point size changes
}
/^\.H / { # heading
head_level = $2
head[head_level+1] = 0
head[head_level+2] = 0
head[head_level+3] = 0
head[head_level+4] = 0
head[head_level+5] = 0
head[head_level]++
$1 = ""
$2 = ""
gsub(/"/,"")
printf "<h" head_level ">"
for (x=1; x <= head_level; x++) {
printf "%d.", head[x]
}
printf " "
print $0 "</h" head_level ">"
next
}
/^ *$/ { # paragraph
"<p>"
next
}
/^\.P *$/ { # paragraph
print "<p>"
next
}
/^\.BL/ { # bulleted list
print "<ul>"
list[++ll] = "</ul>"
indent += 2
next
}
/^\.AL/ { # alpha list
print "<ol>"
list[++ll] = "</ol>"
indent += 2
next
}
/^\.LI/ { # list item
print substr(BLANKS, 1, indent) "<li>"
next
}
/^\.LE/ { # list end
print list[ll--]
indent -= 2
next
}
/\.ds/ { # trash them
next
}
/^\.ce/ { # center next line(s)--only does one line for now
print "<p align=\"center\">"
next
}
{ # print whatever we have left
# hard stuff like font changes where we need to remember
split($0,tmp,"\\")
for (x in tmp) {
if (sub(/^fB/, "<b>", tmp[x]) == 1) {
new_sub = "</b>"
}
if (sub(/^f\(HB/, "<b>", tmp[x]) == 1) {
new_sub = "</b>"
}
if (sub(/^fI/, "<i>", tmp[x]) == 1) {
new_sub = "</i>"
}
if (sub(/^fP/, new_sub, tmp[x]) == 1) {
new_sub = "#####"
}
}
for (x in tmp) {
printf "%s", substr(BLANKS, 1, indent)
printf "%s", tmp[x]
}
print ""
}
END {
# ending HTML crap
print "</body>"
print "</html>"
}
Most of this is pretty ordinary and brute force. Note that the indenting I add in the output is cosmetic to make it easier to see what is going on. The only "hard part" was dealing with the headings.
In troff with mm, headings are of the form section.subsection.subsubsection ... followed by text. For example, 3.5.1 This is a test would be a standard looking heading. I put this together by using an HTML heading tag of a corresponding level manually counting the number of sections at the current level. For those unfamiliar with awk, let's look at this piece of the code:
head[head_level]++
$1 = ""
$2 = ""
gsub(/"/,"")
printf ""
for (x=1; x <= head_level; x++) {
printf "%d.", head[x]
}
printf " "
print $0 " "
The head array keeps track of the current section number at each level. After incrementing the section, the next two lines look a bit strange. In awk, $0 is the full input line and the pieces (parsed using the current field separator) get assigned to $1, $2 and so on. If you assign to htem, $0 gets updated so all this does is toss the first two fields from the input line—the troff .H tag and the level number.
The for look builds the section string and the final print statement prints the original input line minus the first two fields and appends the appropriate <\h to it.
Like with my shell script, this one a one-time fix that focused on the task at hand. Depending on what you had done in your troff code, there may be other tags worth converting.
__________________________
Phil Hughes
Special Magazine Offer -- Free Gift with Subscription
Receive a free digital copy of Linux Journal's System Administration Special Edition as well as instant online access to current and past issues. CLICK HERE for offer
Linux Journal: delivering readers the advice and inspiration they need to get the most out of their Linux systems since 1994.
Subscribe now!
The Latest
Newsletter
Tech Tip Videos
- Jul-01-09
- Jun-29-09
Recently Popular
From the Magazine
July 2009, #183
News Flash: Linux Kernel 3.0 to include an on-the-go Expresso machine interface! Ok, maybe not, but Linux is definitely going mobile, from phones to e-readers. Find out more inside about Android, the Kindle 2, the Western Digital MyBook II, The Bug, and Indamixx (a portable recording studio). And if you've gone mobile and you been wanting more Emacs in your life then check out Conkeror.
To compliment the mobile we've got the stationary: parsing command line options with getopt, checking your Ruby code with metric_fu, and building a secure Squid proxy. How is this stationary you ask? What can we say? It's not. We just wanted to see if anybody actually read this part of the page :) .
All this and more, and all you have to do is get your hot sweaty hands on the latest copy of Linux Journal.
Delicious
Digg
StumbleUpon
Reddit
Facebook








Ok, nice try. Are you aware
On August 26th, 2008 Anonymous (not verified) says:
Ok, nice try.
Are you aware of groff which is able to generate HTML using -Thtml as output device
typical use is
$ groff -mwww -Thtml inputfile > out.html
Heinz
Post new comment