summaryrefslogtreecommitdiff
path: root/doc/todo
diff options
context:
space:
mode:
authorprivat <privat@web>2010-09-17 01:42:46 +0000
committerJoey Hess <joey@kitenet.net>2010-09-17 01:42:46 +0000
commit9585968861d551fc43379053f8556a2fe44de7b8 (patch)
treeff4b618931f5677bc54c00015ab1a87db4a6ca5e /doc/todo
parent0780d989a91974604beb711325ee5ddba6bb207c (diff)
patch proposal: add option to capitalize pagetitles
Diffstat (limited to 'doc/todo')
-rw-r--r--doc/todo/capitalize_title.mdwn31
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/todo/capitalize_title.mdwn b/doc/todo/capitalize_title.mdwn
new file mode 100644
index 000000000..3e8366dd3
--- /dev/null
+++ b/doc/todo/capitalize_title.mdwn
@@ -0,0 +1,31 @@
+Here I propose an option (with a [[patch]]) to capitalize the first letter (ucfirst) of default titles : filenames and urls can be lowercase but title are displayed with a capital first character (filename = "foo.mdwn", pagetitle = "Foo"). Note that \[[!meta title]] are unaffected (no automatic capitalization). Comments please :) --[[JeanPrivat]]
+<pre><code>
+diff --git a/IkiWiki.pm b/IkiWiki.pm
+index 6da2819..fd36ec4 100644
+--- a/IkiWiki.pm
++++ b/IkiWiki.pm
+@@ -281,6 +281,13 @@ sub getsetup () {
+ safe => 0,
+ rebuild => 1,
+ },
++ capitalize => {
++ type => "boolean",
++ default => undef,
++ description => "capitalize the first letter of page titles",
++ safe => 1,
++ rebuild => 1,
++ },
+ userdir => {
+ type => "string",
+ default => "",
+@@ -989,6 +996,10 @@ sub pagetitle ($;$) {
+ $page=~s/(__(\d+)__|_)/$1 eq '_' ? ' ' : "&#$2;"/eg;
+ }
+
++ if ($config{capitalize}) {
++ $page = ucfirst $page;
++ }
++
+ return $page;
+ }
+</code></pre>