Lines Matching refs:to

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.
38 External links are recognized automagically: http://www.google.com or simply www.google.com - You can set the link text as well: [[http://www.google.com|This Link points to google]]. Email addresses like this one: <andi@splitbrain.org> are recognized, too.
42 link text as well: [[http://www.google.com|This Link points to google]]. Email
52 [[doku>pagename|Wiki pagenames]] are converted to lowercase automatically, special characters are not allowed.
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]].
62 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.
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]].
74 DokuWiki supports [[doku>Interwiki]] links. These are quick links to other Wikis.
75 For example this is a link to Wikipedia's page about Wikis: [[wp>Wiki]].
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>
90 * Copy only the strings that needs to be modified
97 You can also use an image to link to another internal or external page by combining the syntax for links and [[#images_and_other_files|images]] (see below) like this:
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.
135 Resize to given width: {{wiki:dokuwiki-128.png?50}}
137 Resize to given width and height((when the aspect ratio of the given width and height doesn't match that of the image, it will be cropped to the new ratio before resizing)): {{wiki:dokuwiki-128.png?200x50}}
142 Resize to given width: {{wiki:dokuwiki-128.png?50}}
143 Resize to given width and height: {{wiki:dokuwiki-128.png?200x50}}
165 For linking an image to another page see [[#Image Links]] above.
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.
228 The text to image conversion is mainly done for smileys. And the text to HTML conversion is used for typography replacements, but can be configured to use other HTML as well.
230 ==== Text to Image Conversions ====
232 DokuWiki converts commonly used [[wp>emoticon]]s to their graphical equivalents. Those [[doku>Smileys]] and other images can be configured and extended. Here is an overview of Smileys included in DokuWiki:
256 ==== Text to HTML Conversions ====
258 Typography: [[DokuWiki]] can convert simple text characters to their typographically correct entities. Here is an example of recognized characters.
268 The same can be done to produce any kind of HTML, it just needs to be added to the [[doku>entities|pattern file]].
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.
318 To connect cells horizontally, just make the next cell completely empty as shown above. Be sure to have always the same amount of cell separators!
334 You can have rowspans (vertically connected cells) by adding ''%%:::%%'' into the cells below the one to which they should connect.
348 You can align the table contents, too. Just add at least two whitespaces at the opposite end of your text: Add two spaces on the left to align right, two spaces on the right to align left and two spaces at least at both ends for centered text.
366 If you need to display text exactly like it is typed (without any formatting), enclose the area either with ''%%<nowiki>%%'' tags or even simpler, with double percent signs ''<nowiki>%%</nowiki>''.
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.
406 [[wiki:DokuWiki]] can highlight sourcecode, which makes it easier to read. It uses the [[http://qbnz.com/highlighter/|GeSHi]] Generic Syntax Highlighter -- so any language supported by GeSHi is supported. The syntax uses the same code and file blocks described in the previous section, but this time the name of the language syntax to be highlighted is included inside the tag, e.g. ''<nowiki><code java></nowiki>'' or ''<nowiki><file java></nowiki>''.
411 * simply displays "Hello World!" to the standard output.
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:
444 | any number | will be used as maximum number items to show, defaults to 8 |
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.
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 |