diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-12-11 13:31:25 -0500 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-12-11 13:31:25 -0500 |
commit | 3305fb9d36de3c32552da036ebc6db2611fe13fe (patch) | |
tree | b70f72b45feb05f552d400fd850b901d228e3474 | |
parent | 8b7c2f29bf316e78d49408b3ce4758cbaea4a42f (diff) |
markdown fixes
-rw-r--r-- | doc/git.mdwn | 10 | ||||
-rwxr-xr-x | gitremotes | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/doc/git.mdwn b/doc/git.mdwn index 511a0a75c..abb25722a 100644 --- a/doc/git.mdwn +++ b/doc/git.mdwn @@ -30,13 +30,13 @@ into [[Joey]]'s working tree. This is recommended. :-) <!-- Machine-parsed format: * wikilink <git:url> --> -* [[github]] <git://github.com/joeyh/ikiwiki.git> +* github `git://github.com/joeyh/ikiwiki.git` [browse](http://github.com/joeyh/ikiwiki/tree/master) A mirror of the main repo, automatically updated. -* [[smcv]] <git://git.pseudorandom.co.uk/git/smcv/ikiwiki.git> -* [[intrigeri]] <git://gaffer.ptitcanardnoir.org/ikiwiki.git> -* [[gmcmanus]] <git://github.com/gmcmanus/ikiwiki.git> -* [[jelmer]] <git://git.samba.org/jelmer/ikiwiki.git> +* [[smcv]] `git://git.pseudorandom.co.uk/git/smcv/ikiwiki.git` +* [[intrigeri]] `git://gaffer.ptitcanardnoir.org/ikiwiki.git` +* [[gmcmanus]] `git://github.com/gmcmanus/ikiwiki.git` +* [[jelmer]] `git://git.samba.org/jelmer/ikiwiki.git` ## branches diff --git a/gitremotes b/gitremotes index b14490924..7b9484dd1 100755 --- a/gitremotes +++ b/gitremotes @@ -6,7 +6,7 @@ my $error=0; open (IN, "doc/git.mdwn") || die "doc/git.mdwn: $!"; while (<IN>) { - if (/^\*\s+\[\[(\w+)\]\]\s+<([^>]+)>/) { + if (/^\*\s+\[?\[?(\w+)\]?\]?\s+`([^>]+)`/) { # note that the remote name has to be a simple word (\w) # for security/sanity reasons my $remote=$1; |