SearchWiki:

Welcome

GNUnilink

All Recent Changes Recent Changes Printable View Page History Edit Page
Directives

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 text:)

Sets a page's title to be something other than the name of the page. For example, the markup

    (:title Patrick's home page:)

uses "Patrick's home page" as the title of the page in the browser title bar (HTML <title> tag) and the title area of the page ($PageTitle variable). Note that apostrophes and other special characters can be used here.

(:keywords word, ...:)

Sets page keywords in an HTML <meta name='keywords' content='word, ...' /> tag.

(:include PageName:) and (:include PageName#start#end:)

Includes the contents of another page into the text of the current page. The second form of the include is used to include only the portion of the page between the #start and #end anchors. #start and #end can be numeric, in which case they refer to line numbers within the page, so that (:include RecentChanges#1#10:) grabs only the first ten lines of the RecentChanges file.

(:noheader:), (:nofooter:), (:notitle:), etc.

These directives disable the header, footer, and page title portions of a page's layout (if the page's skin allows it).

(:(no)spacewikiwords:)

Turns on (off) automatic spacing of bare WikiWords within the page text. When on, WikiWord will be displayed as "Wiki Word".

(:(no)linkwikiwords:)

Turns on (off) automatic linking of bare WikiWords to pages of the same name.

(:if cond param:)

The (: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:)
For more details, see ConditionalMarkup?.

(:pagelist group=xxx fmt=yyy list=zzz:)

The (: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=xxx
optional, xxx = name of group, which pages should be included in the list

Q: can you specify pages as well, e.g via regex or mathcing name-prefix: Group\.PREF.* = all pages of group "Group" starting with "PREF" --KAL?
A: No, just groups and not pages. There may be a new option added at some point that allows specifying fullnames by regex. Plus there's always the list=zzz option below which does allow arbitrary lists. --Pm?

fmt=yyy
optional, yyy =
bygroup
default, level 1 list entries for each group with level 2 list entries for each page of a group
simple
one line per page, using full pagename: "* groupname.pagename", no group headers
see also
Cookbook:DictIndex

list=zzz
optional, zzz =
normal
don't include special pages like RecentChanges, GroupHeader and GroupFooter in the list

You can do
(: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

from mailings: Pm?:

For RecentPages?, I just put the following in my local/config.php:

$RCTime = strftime('%b %d %H:%M',$Now);
$RecentChangesFmt['Main.RecentPages'] = ':[[$FullName]]: $RCTime';

(:searchbox:)

(:searchresults group=xxx fmt=yyy list=zzz text:)

<< Markup master index | PmWiki.DocumentationIndex | Using Categories >>

Page last modified on October 26, 2004, at 07:30 PM