diff options
author | Dieter Plaetinck <dieter@plaetinck.be> | 2009-08-03 23:32:16 +0200 |
---|---|---|
committer | Dieter Plaetinck <dieter@plaetinck.be> | 2009-08-03 23:32:16 +0200 |
commit | d6b08f0cb077a886bcf4969dec3b75a0c965b703 (patch) | |
tree | 5f3c32e25b55b48ac29e286fa9873591f49a2674 | |
parent | 7f3916486d3e6391e69cc20fb05a4eab2c118a46 (diff) |
fixes for hyperlinks
-rw-r--r-- | doc/official_installation_guide_en | 7 | ||||
-rwxr-xr-x | 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|<a href="\([^"]*\)"[^>]*>\([^<]*\)</a>|[\1 \2]|g' > $i.html done |