diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-10-13 23:08:38 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-10-13 23:08:38 +0000 |
commit | 2d9ee110063a7422a1bcfb97e14de2823c7a4733 (patch) | |
tree | 3f8c33b606e90ca3936b736e69b35d6b9fb950f5 /IkiWiki.pm | |
parent | 27299788e8fdc97c7fc1ad112f4610b1bdbaa3a6 (diff) | |
download | ikiwiki-2d9ee110063a7422a1bcfb97e14de2823c7a4733.tar ikiwiki-2d9ee110063a7422a1bcfb97e14de2823c7a4733.tar.gz |
* Add a "createlink" class attribute to the span for wikilinks pointing
to not-yet-existing pages. I don't have a useful style defined for that
though.
Diffstat (limited to 'IkiWiki.pm')
-rw-r--r-- | IkiWiki.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki.pm b/IkiWiki.pm index 7a189cc8b..5ae360ad0 100644 --- a/IkiWiki.pm +++ b/IkiWiki.pm @@ -563,7 +563,7 @@ sub htmllink ($$$;@) { #{{{ if (! $destsources{$bestlink}) { return $linktext unless length $config{cgiurl}; - return "<span><a href=\"". + return "<span class=\"createlink\"><a href=\"". cgiurl( do => "create", page => pagetitle(lc($link), 1), |