]> sipb.mit.edu Git - ikiwiki.git/blob - doc/todo/Add_space_before_slash_in_parent_links.mdwn
web commit by http://svend.myopenid.com/: Submit patch.
[ikiwiki.git] / doc / todo / Add_space_before_slash_in_parent_links.mdwn
1 This patch adds a space before the forward-slash in the the parent links. There is already a space after the slash.
2
3 Before:
4
5     ikiwiki/ todo/ Add space before slash in parent links
6
7 After:
8
9     ikiwiki / todo / Add space before slash in parent links
10
11 Patch:
12
13     diff --git a/templates/misc.tmpl b/templates/misc.tmpl
14     index 80e6d0b..184920e 100644
15     --- a/templates/misc.tmpl
16     +++ b/templates/misc.tmpl
17     @@ -15,7 +15,7 @@
18
19      <div class="header">
20      <span>
21     -<TMPL_VAR INDEXLINK> / <TMPL_VAR TITLE>
22     +<TMPL_VAR INDEXLINK>/ <TMPL_VAR TITLE>
23      </span>
24      </div>
25
26     diff --git a/templates/page.tmpl b/templates/page.tmpl
27     index 1978e93..3a1ac9e 100644
28     --- a/templates/page.tmpl
29     +++ b/templates/page.tmpl
30     @@ -17,7 +17,7 @@
31      <div class="header">
32      <span>
33      <TMPL_LOOP NAME="PARENTLINKS">
34     -<a href="<TMPL_VAR NAME=URL>"><TMPL_VAR NAME=PAGE></a> /
35     +<a href="<TMPL_VAR NAME=URL>"><TMPL_VAR NAME=PAGE></a>/
36      </TMPL_LOOP>
37      <TMPL_VAR TITLE>
38      </span>
39     diff --git a/templates/recentchanges.tmpl b/templates/recentchanges.tmpl
40     index 4877395..e03482f 100644
41     --- a/templates/recentchanges.tmpl
42     +++ b/templates/recentchanges.tmpl
43     @@ -15,7 +15,7 @@
44
45      <div class="header">
46      <span>
47     -<TMPL_VAR INDEXLINK> / <TMPL_VAR TITLE>
48     +<TMPL_VAR INDEXLINK>/ <TMPL_VAR TITLE>
49      </span>
50      </div>