3 Aug
2009
3 Aug
'09
8:36 p.m.
On Mon, Aug 3, 2009 at 3:26 PM, Aaron Griffin<aaronmgriffin@gmail.com> wrote:
On Mon, Aug 3, 2009 at 3:13 PM, Dieter Plaetinck<dieter@plaetinck.be> wrote:
...
Looks good. Yay!
- html links are not interpreted by the wiki software. :( i'll guess I'll need to come up with a sed replacing thingie
Is this a setting? I always thought mediawiki was fine with a tags inside html sections...
I looked it up. Mediawiki explicitly sanitizes a tags... not sure why, but I expected because of javascript: links.... Anyway, this may work: echo '<a href="http://archlinux.org" title="arch linux dot org">Something</a>' \ | sed 's|<a href="\([^"]*\)"[^>]*>\([^<]*\)</a>|[\1 \2]|g' Not sure what to do with the title="" though...