-
Notifications
You must be signed in to change notification settings - Fork 65
Parser Functions
nricciar edited this page Jan 30, 2011
·
3 revisions
Currently the following parser functions are implemented in WikiCloth.
- #if
- #switch
- #expr
- #ifeq
- #len
- #sub
- #pad
- #iferror
- #capture
- lc
- uc
- ucfirst
- lcfirst
- plural
Additional parser functions can be added by extending WikiCloth::Parser.
class WikiParser < WikiCloth::Parser
function do |name,params|
case name
when "date"
Time.now
end
end
end
Now {{date}} will return the current date.