From d6b08f0cb077a886bcf4969dec3b75a0c965b703 Mon Sep 17 00:00:00 2001 From: Dieter Plaetinck Date: Mon, 3 Aug 2009 23:32:16 +0200 Subject: fixes for hyperlinks --- doc/official_installation_guide_en | 7 ++----- make-doc.sh | 4 ++-- 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|]*>\([^<]*\)|[\1 \2]|g' > $i.html done -- cgit v1.2.3-54-g00ecf