[CentOS-docs] Encrypting tmp swap and home

Wed Oct 15 21:07:13 UTC 2008
Filipe Brandenburger <filbranden at gmail.com>

Hi,

On Wed, Oct 15, 2008 at 16:30, Max Hetrick <maxhetrick at verizon.net> wrote:
> html2wiki --dialect MoinMoin my_file.html > my_file.wiki
>
> h2 equals === Title 3 ===
> h3 equals ==== Title 4 ====
> h4 equals ===== Title 5 ====

You could use a sed to post-process the output of html2wiki:

html2wiki --dialect MoinMoin my_file.html | sed '/^=/s/==\(=*\)/\1/g'
>my_file.wiki

Dirty, but should do the job.

HTH,
Filipe