As you can see, there is no easy, maintainence-free solution
for this. It would be nice if there was some kind of
'render core' that could theoretically be abstracted out
of the Everything engine, but there isn't (and probably
for a very good reason too).
So what can you do? Anytime i write a large post, i always start with POD. pod2html produces (IMHO) ugly HTML, but that's okay ... just filter the output through tidy:
pod2html write_up.pod | tidy > write_up.html
Now you have something to work with. The only problem is
that pod2html escapes entities ( < > & ") for you.
This is both a boon and a bane ... boon because it escapes
any example HTML you have in your write up, bane because
it escapes common Perl operators ( -> => > < = <=> ") as well. Honestly, i have no perfect solution for cleaning
up this final step. I usually attack the problem with a
handful of semi-intelligent (or was that semi-braindead)
perl -pi -e one-liners and finish the
rest by hand (data entry is so tedious). But it's better
than relying on a browser to not crash.
Also, don't forget about your scratchpad. It
is perfect for sculpting a write up. ;)
jeffa
L-LL-L--L-LL-L--L-LL-L--
-R--R-RR-R--R-RR-R--R-RR
B--B--B--B--B--B--B--B--
H---H---H---H---H---H---
(the triplet paradiddle with high-hat)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|