summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/official_installation_guide_en7
-rwxr-xr-xmake-doc.sh4
2 files changed, 4 insertions, 7 deletions
diff --git a/doc/official_installation_guide_en b/doc/official_installation_guide_en
index 27259f0..827e793 100644
--- a/doc/official_installation_guide_en
+++ b/doc/official_installation_guide_en
@@ -896,8 +896,5 @@ file referenced by it's full path as a parameter.
## APPENDIX
-See [Official Arch Linux Install Guide Appendix][52] for some related
-unofficial documentation, new users may find useful.
-
- [52]: /index.php/Official_Arch_Linux_Install_Guide_Appendix (Official Arch
-Linux Install Guide Appendix)
+See [Official Arch Linux Install Guide Appendix](http://wiki.archlinux.org/index.php/Official_Arch_Linux_Install_Guide_Appendix)
+for some related unofficial documentation, new users may find useful.
diff --git a/make-doc.sh b/make-doc.sh
index e05fb7c..0cda6fe 100755
--- a/make-doc.sh
+++ b/make-doc.sh
@@ -3,10 +3,10 @@ which markdown &>/dev/null || echo "Need markdown utility!" >&2
# do we need to sed links?
# do we need to add section 'avail languages'? like http://wiki.archlinux.org/index.php/Official_Arch_Linux_Install_Guide
# what about summary and related articles?
-# obfuscate email?
+# obfuscate email? wiki supports mailto dingske
for i in doc/official_installation_guide_??
do
echo $i
- cat $i | markdown > $i.html
+ cat $i | markdown | sed 's|<a href="\([^"]*\)"[^>]*>\([^<]*\)</a>|[\1 \2]|g' > $i.html
done