⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wiki-syntax.html

📁 ADI 公司blackfin系列的用户使用文挡。
💻 HTML
📖 第 1 页 / 共 3 页
字号:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head>  <title></title>  <link rel="stylesheet" media="screen" type="text/css" href="./style.css" />  <link rel="stylesheet" media="screen" type="text/css" href="./design.css" />  <link rel="stylesheet" media="print" type="text/css" href="./print.css" />  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head><body><a href=start.html>start</a></br><div class="toc"><div class="tocheader toctoggle" id="toc__header">Table of Contents</div><div id="toc__inside"><ul class="toc"><li class="level1"><div class="li"><span class="li"><a href="#formatting_syntax" class="toc">Formatting Syntax</a></span></div><ul class="toc"><li class="level2"><div class="li"><span class="li"><a href="#basic_text_formatting" class="toc">Basic text formatting</a></span></div></li><li class="level2"><div class="li"><span class="li"><a href="#adding_color" class="toc">Adding Color</a></span></div></li><li class="level2"><div class="li"><span class="li"><a href="#links" class="toc">Links</a></span></div><ul class="toc"><li class="level3"><div class="li"><span class="li"><a href="#external" class="toc">External</a></span></div></li><li class="level3"><div class="li"><span class="li"><a href="#internal" class="toc">Internal</a></span></div></li><li class="level3"><div class="li"><span class="li"><a href="#interwiki" class="toc">Interwiki</a></span></div></li><li class="level3"><div class="li"><span class="li"><a href="#windows_shares" class="toc">Windows Shares</a></span></div></li><li class="level3"><div class="li"><span class="li"><a href="#image_links" class="toc">Image Links</a></span></div></li></ul></li><li class="level2"><div class="li"><span class="li"><a href="#notes" class="toc">Notes</a></span></div></li><li class="level2"><div class="li"><span class="li"><a href="#footnotes" class="toc">Footnotes</a></span></div></li><li class="level2"><div class="li"><span class="li"><a href="#sectioning" class="toc">Sectioning</a></span></div><ul class="toc"><li class="level3"><div class="li"><span class="li"><a href="#headline_level_3" class="toc">Headline Level 3</a></span></div></li></ul></li><li class="level2"><div class="li"><span class="li"><a href="#images_and_other_files" class="toc">Images and other files</a></span></div></li><li class="level2"><div class="li"><span class="li"><a href="#lists" class="toc">Lists</a></span></div></li><li class="level2"><div class="li"><span class="li"><a href="#smileys" class="toc">Smileys</a></span></div></li><li class="level2"><div class="li"><span class="li"><a href="#typography" class="toc">Typography</a></span></div></li><li class="level2"><div class="li"><span class="li"><a href="#quoting" class="toc">Quoting</a></span></div></li><li class="level2"><div class="li"><span class="li"><a href="#tables" class="toc">Tables</a></span></div></li><li class="level2"><div class="li"><span class="li"><a href="#nonparsed_blocks" class="toc">Nonparsed Blocks</a></span></div></li><li class="level2"><div class="li"><span class="li"><a href="#syntax_highlighting" class="toc">Syntax Highlighting</a></span></div></li><li class="level2"><div class="li"><span class="li"><a href="#embedding_html_and_php" class="toc">Embedding HTML and PHP</a></span></div></li><li class="level2"><div class="li"><span class="li"><a href="#embedding_plots" class="toc">Embedding Plots</a></span></div></li></ul></li></ul></div></div><h1><a name="formatting_syntax" id="formatting_syntax">Formatting Syntax</a></h1><div class="level1"><p> <a href="wiki-dokuwiki.html" class="wikilink1" title="wiki-dokuwiki.html">DokuWiki</a> 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 <em>Edit this page</em> button at the top or bottom of the page. If you want to try something, just use the <a href="wiki-playground.html" class="wikilink1" title="wiki-playground.html">playground</a> page. The simpler markup is easily accessible via <a href="http://wiki.splitbrain.org/wiki%3Aquickbuttons" class="interwiki iw_doku" title="http://wiki.splitbrain.org/wiki%3Aquickbuttons">quickbuttons</a>, too.</p></div><!-- SECTION [1-506] --><h2><a name="basic_text_formatting" id="basic_text_formatting">Basic text formatting</a></h2><div class="level2"><p> DokuWiki supports <strong>bold</strong>, <em>italic</em>, <em class="u">underlined</em> and <code>monospaced</code> texts. Of course you can <strong><em class="u"><em><code>combine</code></em></em></strong> all these. </p><pre class="code">DokuWiki supports **bold**, //italic//, __underlined__ and ''monospaced'' texts.Of course you can **__//''combine''//__** all these.</pre><p> You can use <sub>subscript</sub> and <sup>superscript</sup>, too. </p><pre class="code">You can use &lt;sub&gt;subscript&lt;/sub&gt; and &lt;sup&gt;superscript&lt;/sup&gt;, too.</pre><p> You can mark something as <del>deleted</del> as well. </p><pre class="code">You can mark something as &lt;del&gt;deleted&lt;/del&gt; as well.</pre><p> <strong>Paragraphs</strong> are created from blank lines. If you want to <strong>force a newline</strong> without a paragraph, you can use two backslashes followed by a whitespace or the end of line.</p><p>This is some text with some linebreaks<br/> Note that the two backslashes are only recognized at the end of a line<br/> or followed by<br/> a whitespace \\this happens without it. </p><pre class="code">This is some text with some linebreaks\\ Note that thetwo backslashes are only recognized at the end of a line\\or followed by\\ a whitespace \\this happens without it.</pre><p> You should use forced newlines only if really needed. </p></div><!-- SECTION [507-1642] --><h2><a name="adding_color" id="adding_color">Adding Color</a></h2><div class="level2"><p>&lt;color RED/BLUE&gt;This text should be red with a blue background&lt;/color&gt;</p><pre class="code">&lt;color RED/BLUE&gt;This text should be red with a blue background&lt;/color&gt;</pre></div><!-- SECTION [1643-1826] --><h2><a name="links" id="links">Links</a></h2><div class="level2"><p> DokuWiki supports multiple ways of creating links.</p></div><!-- SECTION [1827-1897] --><h3><a name="external" id="external">External</a></h3><div class="level3"><p> External links are recognized automagically: <a href="http://www.google.com" class="urlextern" title="http://www.google.com"  rel="nofollow">http://www.google.com</a> or simply <a href="http://www.google.com" class="urlextern" title="http://www.google.com"  rel="nofollow">www.google.com</a> - You can set Linknames, too: <a href="http://www.google.com" class="urlextern" title="http://www.google.com"  rel="nofollow">This Link points to google</a>. Email addresses like this one: <a href="mailto:&#x61;&#x6e;&#x64;&#x69;&#x40;&#x73;&#x70;&#x6c;&#x69;&#x74;&#x62;&#x72;&#x61;&#x69;&#x6e;&#x2e;&#x6f;&#x72;&#x67;" class="mail JSnocheck" title="&#x61;&#x6e;&#x64;&#x69;&#x40;&#x73;&#x70;&#x6c;&#x69;&#x74;&#x62;&#x72;&#x61;&#x69;&#x6e;&#x2e;&#x6f;&#x72;&#x67;">&#x61;&#x6e;&#x64;&#x69;&#x40;&#x73;&#x70;&#x6c;&#x69;&#x74;&#x62;&#x72;&#x61;&#x69;&#x6e;&#x2e;&#x6f;&#x72;&#x67;</a> are recognized, too. </p><pre class="code">DokuWiki supports multiple ways of creating links. External links are recognizedautomagically: http://www.google.com or simply www.google.com - You can setLinknames, too: [[http://www.google.com|This Link points to google]]. Emailaddresses like this one: &lt;andi@splitbrain.org&gt; are recognized, too.</pre></div><!-- SECTION [1898-2478] --><h3><a name="internal" id="internal">Internal</a></h3><div class="level3"><p> Internal links are created by using square brackets. You can either just give a <a href="http://wiki.splitbrain.org/wiki%3Apagename" class="interwiki iw_doku" title="http://wiki.splitbrain.org/wiki%3Apagename">wiki:pagename</a> or use an additional <a href="http://wiki.splitbrain.org/wiki%3Apagename" class="interwiki iw_doku" title="http://wiki.splitbrain.org/wiki%3Apagename">Title Text</a>. Wiki pagenames are converted to lowercase automatically, special characters are not allowed.  </p><pre class="code">Internal links are created by using square brackets. You can either just givea [[pagename]] or use an additional [[pagename|Title Text]]. Wiki pagenamesare converted to lowercase automatically, special chars are not allowed.</pre><p> You can use <a href="wiki-namespaces.html" class="wikilink2" title="wiki-namespaces.html">namespaces</a> by using a colon in the pagename. </p><pre class="code">You can use [[wiki:namespaces]] by using a colon in the pagename.</pre><p> For details about namespaces see <a href="http://wiki.splitbrain.org/wiki%3Anamespaces" class="interwiki iw_doku" title="http://wiki.splitbrain.org/wiki%3Anamespaces">wiki:namespaces</a>.</p><p>Linking to a specific section is possible, too. Just add the sectionname behind a hash character as known from <acronym title="HyperText Markup Language">HTML</acronym>. This links to <a href="wiki-syntax.html#internal" class="wikilink1" title="wiki-syntax.html">this Section</a>. </p><pre class="code">This links to [[syntax#internal|this Section]].</pre><p> Notes: </p><ul><li class="level1"><div class="li"> Links to <a href="wiki-syntax.html" class="wikilink1" title="wiki-syntax.html">existing pages</a> are shown in a different style from <a href="wiki-nonexisting.html" class="wikilink2" title="wiki-nonexisting.html">nonexisting</a> ones.</div></li><li class="level1"><div class="li"> DokuWiki does not use <a href="http://en.wikipedia.org/wiki/CamelCase" class="interwiki iw_wp" title="http://en.wikipedia.org/wiki/CamelCase">CamelCase</a> to automatically create links by default, but this behaviour can be enabled in the <a href="http://wiki.splitbrain.org/config" class="interwiki iw_doku" title="http://wiki.splitbrain.org/config">config</a> file. Hint: If DokuWiki is a link, then it&rsquo;s enabled.</div></li><li class="level1"><div class="li"> When a section&rsquo;s heading is changed, it&rsquo;s bookmark changes, too. So don&rsquo;t rely on section linking too much.</div></li></ul></div><!-- SECTION [2479-3823] --><h3><a name="interwiki" id="interwiki">Interwiki</a></h3><div class="level3"><p> DokuWiki supports <a href="http://wiki.splitbrain.org/wiki%3Ainterwiki" class="interwiki iw_doku" title="http://wiki.splitbrain.org/wiki%3Ainterwiki">Interwiki</a> links. These are quick links to other Wikis. For example this is a link to Wikipedia&rsquo;s page about Wikis: <a href="http://en.wikipedia.org/wiki/Wiki" class="interwiki iw_wp" title="http://en.wikipedia.org/wiki/Wiki">Wiki</a>. </p><pre class="code">DokuWiki supports [[doku&gt;wiki:interwiki|Interwiki]] links. These are quick links to other Wikis.For example this is a link to Wikipedia's page about Wikis: [[wp&gt;Wiki]].</pre></div><!-- SECTION [3824-4190] --><h3><a name="windows_shares" id="windows_shares">Windows Shares</a></h3><div class="level3"><p> Windows shares like <a href="file://///server/share" class="windows" title="\\server\share" onclick="if(document.all == null){alert('Linking to Windows shares only works in Microsoft Internet Explorer.\nYou still can copy and paste the link.');}" onkeypress="if(document.all == null){alert('Linking to Windows shares only works in Microsoft Internet Explorer.\nYou still can copy and paste the link.');}">this</a> are recognized, too. Please note that these only make sense in a homogenous user group like a corporate <a href="http://en.wikipedia.org/wiki/Intranet" class="interwiki iw_wp" title="http://en.wikipedia.org/wiki/Intranet">Intranet</a>. </p><pre class="code">Windows Shares like [[\\server\share|this]] are recognized, too.</pre><p> Notes: </p><ul><li class="level1"><div class="li"> For security reasons direct browsing of windows shares only works in Microsoft Internet Explorer per default (and only in the &ldquo;local zone&rdquo;).</div></li><li class="level1"><div class="li"> For Mozilla and Firefox it can be enabled through the config option <a href="http://www.mozilla.org/quality/networking/docs/netprefs.html#file" class="urlextern" title="http://www.mozilla.org/quality/networking/docs/netprefs.html#file"  rel="nofollow">security.checkloaduri</a> but this is not recommended</div></li><li class="level1"><div class="li"> See <a href="http://bugs.splitbrain.org/index.php?do=details&amp;id=151" class="interwiki iw_bug" title="http://bugs.splitbrain.org/index.php?do=details&amp;id=151">151</a> for more info</div></li></ul></div><!-- SECTION [4191-4830] --><h3><a name="image_links" id="image_links">Image Links</a></h3><div class="level3"><p> You can also use an image to link to another internal or external page by combining the syntax for links and images (see below) like this: </p><pre class="code">[[http://www.php.net|{{wiki:dokuwiki-128.png}}]]</pre><p> <a href="http://www.php.net" class="media" title="http://www.php.net"  rel="nofollow"><img src="media/wiki/dokuwiki-128.png" class="media" alt="" /></a></p><p>Please note: The image formatting is the only formatting syntax accepted in link names.</p></div><!-- SECTION [4831-5185] --><h2><a name="notes" id="notes">Notes</a></h2><div class="level2"><p> You can add notes, by which have 4 options : classic, important warning, tip. This is what they look like:</p><p>  </p><pre class="code">&lt;note tip&gt;This is my note ! Notes can have either classic, important warning, or tip.&lt;/note&gt;</pre>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -