blob: 65ab13c592a89842aef23680d7ffd7aad37042c5 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# Contains a workaround for the libxslt bug 377440
# http://bugzilla.gnome.org/show_bug.cgi?id=377440
wget -q -O - http://www.mpfr.org/faq.html | xsltproc --nodtdattr faq.xsl - | \
perl -pe 's,(<(h:)?style.*),<style type="text/css">/*<![CDATA[*/,;
s,(</(h:)?style>),/*]]>*/</style>,;
s,GMP_RND,MPFR_RND,g;' > FAQ.html
|