Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://www.atnf.csiro.au/vlbi/wiki/index.php?n=PmWiki.Directives
Дата изменения: Unknown Дата индексирования: Tue Apr 12 15:22:10 2016 Кодировка: Поисковые слова: ion drive |
PmWiki /
Directives
TODO: This page needs to be cleaned up for 2.0 release.
See also the MarkupMasterIndex. PmWiki uses the markup sequence 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.
Sets page keywords in an HTML <meta name='keywords' content='word, ...' /> tag.
Sets page description in an HTML <meta name='description' content='A page about...' /> tag.
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.
In PmWiki 2, one can specify a range of lines to be used in the
(:include:) directive, thus:
(from Pm email)
(:include SomePage :) - include all of SomePage(:include SomePage lines=10 :) - include lines 1-10 of SomePage(:include SomePage lines=1..10 :) - include lines 1-10 of SomePage(:include SomePage lines=6..10 :) - include lines 6-10 of SomePage(:include SomePage lines=6.. :) - include lines 6 to end of SomePage(:include SomePage lines=6..6:) - include only line 6 of SomePage
These directives disable the header, footer, and page title portions of a page's layout (if the page's skin allows it).
Turns on (off) automatic spacing of bare WikiWords within the page text. When on, WikiWord will be displayed as "Wiki Word".
Turns on (off) automatic linking of bare WikiWords to pages of the same name.
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.
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.
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:
For RecentPages, I just put the following in my local/config.php:
(There must be two spaces between the wikilink and the following text -> Copy&Paste from the source, not html view.)
$RCTime = strftime('%b %d %H:%M',$Now);
$RecentChangesFmt['Main.RecentPages'] = ':[[$FullName]]: $RCTime';
see also:Cookbook:SearchResults
Shows a search box at this position.
see also:Cookbook.SearchResults
Can be used for markup examples, showing first the markup and then the result of the markup. see PmWiki.TextFormattingRules for examples.
<< | PmWiki.DocumentationIndex | >> |