See also the MarkupMasterIndex.
PmWiki uses the markup sequence (:directive ...:) for a number of directives and text substitutions. Many of these replace the "double-bracket" directives that were used in PmWiki 1.0 and earlier versions. Here's a brief description of each.
(:title Patrick's home page:)
<meta name='keywords' content='word, ...' /> tag.
(:include PageName:) and (:include PageName#start#end:)
(:include RecentChanges#1#10:) grabs only the first ten lines of the RecentChanges file.
(:noheader:), (:nofooter:), (:notitle:), etc.
(:(no)spacewikiwords:)
(:(no)linkwikiwords:)
(:if cond param:) syntax allows portions of the markup text to be conditionally processed (up to the next (:if:)) depending on administrator-defined conditions. The predefined conditions are "true", "false", "group", and "name". For example,
(:if group PmWiki:)This text displays only in the PmWiki group(:if:)
(:pagelist group=xxx fmt=yyy list=zzz:)
(:pagelist ..:) syntax allows to include a bulleted list of pagenames which are within the specified group. The group and pagenames are displayed as links.
group=xxxlist=zzz option below which does allow arbitrary lists. --Pm?
fmt=yyybygroupsimplelist=zzznormalRecentChanges, GroupHeader and GroupFooter in the list
(:pagelist:) to get a list of all pages,
(:pagelist group=PmWiki:) to get a list of all pages in the PmWiki group,
(:pagelist group={$Group}:) to get a list of all pages in the current group
(:pagelist group={$Group} list=normal:) to get a list of all pages in the current group except GroupHeader, GroupFooter, RecentChanges etc
$RCTime = strftime('%b %d %H:%M',$Now);
$RecentChangesFmt['Main.RecentPages'] = ':[[$FullName]]: $RCTime';
(:searchresults group=xxx fmt=yyy list=zzz text:)
<< Markup master index | PmWiki.DocumentationIndex | Using Categories >>