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 "Edit this 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/lang/en/lang.php'' (more details at [[doku>localization#changing_some_localized_texts_and_strings_in_your_installation|localization]]): <code - conf/lang/en/lang.php>
109 You can add footnotes ((This is a footnote)) by using double parentheses.
111 You can add footnotes ((This is a footnote)) by using double parentheses.
115 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.
125 By using four or more dashes, you can make a horizontal line:
159 Of course, you can add a title (displayed as a tooltip by most browsers), too.
176 If you specify a filename that is not a supported media format, then it will be displayed as a link instead.
178 By adding ''?linkonly'' you provide a link to the media without displaying it inline
182 {{wiki:dokuwiki-128.png?linkonly}} This is just a link to the image.
192 When you upload a ''video.webm'' and ''video.ogv'' next to the referenced ''video.mp4'', DokuWiki will automatically add them as alternatives so that one of the three files is understood by your browser.
194 Additionally DokuWiki supports a "poster" image which will be shown before the video has started. That image needs to have the same filename as the video and be either a jpg or png file. In the example above a ''video.jpg'' file would work.
198 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.
200 * This is a list
211 * This is a list
222 Also take a look at the [[doku>faq:lists|FAQ on list items]].
261 "He thought 'It's a man's world'..."
265 "He thought 'It's a man's world'..."
270 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]].
274 Some times you want to mark some text to show it's a reply or comment. You can use the following syntax:
304 DokuWiki supports a simple syntax to create tables.
311 Table rows have to start and end with a ''|'' for normal rows or a ''^'' for headers.
327 As you can see, it's the cell separator before a cell which decides about the formatting:
371 The same is true for %%//__this__ text// with a smiley ;-)%%.
376 The same is true for %%//__this__ text// with a smiley ;-)%%.
389 This is pretty much the same, but you could use it to show that you quoted a file.
401 This is pretty much the same, but you could use it to show that you quoted a file.
426 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:
438 If you don't want any highlighting but want a downloadable file, specify a dash (''-'') as the language code: ''%%<code - myfile.foo>%%''.
452 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.
465 Some syntax influences how DokuWiki renders a page without creating any output it self. The following control macros are availble:
469 | %%~~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 |