Opened 17 years ago
Closed 17 years ago
#77 closed task (fixed)
html generator
Reported by: | Peter Johansson | Owned by: | Peter Johansson |
---|---|---|---|
Priority: | major | Milestone: | 0.5 |
Component: | output | Version: | trunk |
Keywords: | Cc: |
Description (last modified by )
A function like: void html(istream&, ostream&, char delim='\n')
The function parses through the istream until delim is found. For most characters the character is copied into ostream. However, some exceptions which include:
" becomes \"
\n becomes <br/>
< becomes <
becomes >
& becomes &
\t becomes (or should we follow the more standard of four spaces for a tab?)
This is needed for ref #62.
Change History (3)
comment:1 Changed 17 years ago by
Description: | modified (diff) |
---|
comment:2 Changed 17 years ago by
Status: | new → assigned |
---|
comment:3 Changed 17 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
(In [178]) fixes #77 text to html translator