]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/commitdiff
Rebased onto a new branch.
authorAmitai Schlair <schmonz-web-ikiwiki@schmonz.com>
Sat, 10 Aug 2013 08:53:23 +0000 (04:53 -0400)
committerAmitai Schlair <schmonz-web-ikiwiki@schmonz.com>
Thu, 15 Aug 2013 14:07:45 +0000 (10:07 -0400)
doc/plugins/contrib/wc.mdwn [deleted file]
doc/plugins/contrib/wordcount.mdwn [new file with mode: 0644]

diff --git a/doc/plugins/contrib/wc.mdwn b/doc/plugins/contrib/wc.mdwn
deleted file mode 100644 (file)
index fb5a732..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-[[!template id=plugin name=wc author="[[schmonz]]"]]
-[[!template id=gitbranch branch=schmonz/wc author="[[schmonz]]"]]
-[[!tag type/meta]]
-[[!tag patch]]
-
-This plugin counts words in a page. For a single page, write a
-`\[[!wc]]` directive and the word count will be interpolated there.
-For a site, add `<TMPL_VAR WORDCOUNT>` to your [[templates]].
-
-If [[!cpan HTML::Strip]] is installed, the wordcount will be slightly
-more accurate.
-
-Possible enhancements:
-
-* Optimize: count words iff the result will be displayed. `sanitize()`
-  seems like the right place to count. Since it's called well after
-  `preprocess()`, I can tell whether a directive needs the result,
-  but since it appears to be called before `pagetemplate()`, I can't
-  tell whether a template wants to know and possibly skip the
-  computation. (In other words, if I add `$needed_for_template`
-  like `$needed_for_directive`, it gets set too late for `sanitize()`
-  to see.)
diff --git a/doc/plugins/contrib/wordcount.mdwn b/doc/plugins/contrib/wordcount.mdwn
new file mode 100644 (file)
index 0000000..6a90d0e
--- /dev/null
@@ -0,0 +1,22 @@
+[[!template id=plugin name=wordcount author="[[schmonz]]"]]
+[[!template id=gitbranch branch=schmonz/wordcount author="[[schmonz]]"]]
+[[!tag type/meta]]
+[[!tag patch]]
+
+This plugin counts words in a page. For a single page, write a
+`\[[!wordcount]]` directive and the word count will be interpolated there.
+For a site, add `<TMPL_VAR WORDCOUNT>` to your [[templates]].
+
+If [[!cpan HTML::Strip]] is installed, the wordcount will be slightly
+more accurate.
+
+Possible enhancements:
+
+* Optimize: count words iff the result will be displayed. `sanitize()`
+  seems like the right place to count. Since it's called well after
+  `preprocess()`, I can tell whether a directive needs the result,
+  but since it appears to be called before `pagetemplate()`, I can't
+  tell whether a template wants to know and possibly skip the
+  computation. (In other words, if I add `$needed_for_template`
+  like `$needed_for_directive`, it gets set too late for `sanitize()`
+  to see.)