Lines Matching refs:a

3 [[doku>DokuWiki]] supports some simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing the pages. Simply have a look at the source of this page by pressing the //Edit this page// button at the top or bottom of the page. If you want to try something, just use the [[playground:playground|playground]] page. The simpler markup is easily accessible via [[doku>toolbar|quickbuttons]], too.
20 **Paragraphs** are created from blank lines. If you want to **force a newline** without a paragraph, you can use two backslashes followed by a whitespace or the end of line.
23 two backslashes are only recognized at the end of a line\\
24 or followed by\\ a whitespace \\this happens without it.
27 two backslashes are only recognized at the end of a line\\
28 or followed by\\ a whitespace \\this happens without it.
47 Internal links are created by using square brackets. You can either just give a [[pagename]] or use an additional [[pagename|link text]].
50 a [[pagename]] or use an additional [[pagename|link text]].
54 You can use [[some:namespaces]] by using a colon in the pagename.
56 You can use [[some:namespaces]] by using a colon in the pagename.
60 Linking to a specific section is possible, too. Just add the section name behind a hash character as known from HTML. This links to [[syntax#internal|this Section]].
66 * Links to [[syntax|existing pages]] are shown in a different style from [[nonexisting]] ones.
67 * DokuWiki does not use [[wp>CamelCase]] to automatically create links by default, but this behavior can be enabled in the [[doku>config]] file. Hint: If DokuWiki is a link, then it's enabled.
68 * When a section's heading is changed, its bookmark changes, too. So don't rely on section linking too much.
72 DokuWiki supports [[doku>Interwiki]] links. These are quick links to other Wikis. For example this is a link to Wikipedia's page about Wikis: [[wp>Wiki]].
75 For example this is a link to Wikipedia's page about Wikis: [[wp>Wiki]].
79 Windows shares like [[\\server\share|this]] are recognized, too. Please note that these only make sense in a homogeneous user group like a corporate [[wp>Intranet]].
86 * For Mozilla and Firefox it can be enabled through different workaround mentioned in the [[http://kb.mozillazine.org/Links_to_local_pages_do_not_work|Mozilla Knowledge Base]]. However, there will still be a JavaScript warning about trying to open a Windows Share. To remove this warning (for all users), put the following line in ''conf/local.protected.php'':
104 You can add footnotes ((This is a footnote)) by using double parentheses.
106 You can add footnotes ((This is a footnote)) by using double parentheses.
110 You can use up to five different levels of headlines to structure your content. If you have more than three headlines, a table of contents is generated automatically -- this can be disabled by including the string ''<nowiki>~~NOTOC~~</nowiki>'' in the document.
120 By using four or more dashes, you can make a horizontal line:
154 Of course, you can add a title (displayed as a tooltip by most browsers), too.
160 If you specify a filename (external or internal) that is not an image (''gif, jpeg, png''), then it will be displayed as a link instead.
166 Dokuwiki supports ordered and unordered lists. To create a list item, indent your text by two spaces and use a ''*'' for unordered lists or a ''-'' for ordered ones.
168 * This is a list
179 * This is a list
190 Also take a look at the [[doku>faq:lists|FAQ on list items]].
228 "He thought 'It's a man's world'..."
232 "He thought 'It's a man's world'..."
237 There are three exceptions which do not come from that pattern file: multiplication entity (640x480), 'single' and "double quotes". They can be turned off through a [[doku>config:typography|config option]].
241 Some times you want to mark some text to show it's a reply or comment. You can use the following syntax:
269 DokuWiki supports a simple syntax to create tables.
276 Table rows have to start and end with a ''|'' for normal rows or a ''^'' for headers.
292 As you can see, it's the cell separator before a cell which decides about the formatting:
336 The same is true for %%//__this__ text// with a smiley ;-)%%.
341 The same is true for %%//__this__ text// with a smiley ;-)%%.
354 This is pretty much the same, but you could use it to show that you quoted a file.
366 This is pretty much the same, but you could use it to show that you quoted a file.
389 When you use the ''%%<code>%%'' or ''%%<file>%%'' syntax as above, you might want to make the shown code available for download as well. You can do this by specifying a file name after language code like this:
401 If you don't want any highlighting but want a downloadable file, specify a dash (''-'') as the language code: ''%%<code - myfile.foo>%%''.
435 echo '<table class="inline"><tr><td>The same, but inside a block level element:</td>';
447 echo '<table class="inline"><tr><td>The same, but inside a block level element:</td>';
465 The refresh period defaults to 4 hours. Any value below 10 minutes will be treated as 10 minutes. [[wiki:DokuWiki]] will generally try to supply a cached version of a page, obviously this is inappropriate when the page contains dynamic external content. The parameter tells [[wiki:DokuWiki]] to re-render the page if it is more than //refresh period// since the page was last rendered.
476 Some syntax influences how DokuWiki renders a page without creating any output it self. The following control macros are availble:
480 | %%~~NOCACHE~~%% | DokuWiki caches all output by default. Sometimes this might not be wanted (eg. when the %%<php>%% syntax above is used), adding this macro will force DokuWiki to rerender a page on every call |