Well, in this worldwide community that's the internet, what could be considered as 'foreign' ? Undoubtly something that's out of this world.
Not:
How can I use French characters in POD files like, for instance, in the following lines, so that once converted to HTML they are OK:
=head1 Filières
=head1 Objet: Création
I use emacs. When I open the POD file in hex mode, the extended characters are represented using two bytes. For instance 'è' is 0xC3 0xA8 (or 0xA8 0xC3) and not an ASCII chars above 128. So I guess some kind of encoding goes on.
Do I have to give other arguments when using pod2html to convert the file ?
Thanks !
UPDATE
Found it.
The HTML file generated by pod2html has to be fixed by adding the following line after the DOCTYPE declaration:
<meta http-equiv="Content-type"content="text/html;charset=UTF-8"
/>
There must be a way to do this automatically every time pod2html is called. Maybe a wrapper...
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, details, 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, summary, 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.