diff options
author | Arquivo Publico de Memoria Coletiva <arquivo@sarava.org> | 2015-07-31 23:38:38 -0300 |
---|---|---|
committer | Arquivo Publico de Memoria Coletiva <arquivo@sarava.org> | 2015-07-31 23:38:38 -0300 |
commit | df4566af59ba8e453d12f27784bbcd4082cfc666 (patch) | |
tree | 6fffdd129c497f550b2d32831b274dc7cebe6792 /ikiwiki/formatting | |
parent | 1fac146001ef2ed20f20fb5adf802e81452879ce (diff) | |
download | arquivo-df4566af59ba8e453d12f27784bbcd4082cfc666.tar.gz arquivo-df4566af59ba8e453d12f27784bbcd4082cfc666.tar.bz2 |
Initial static site generation
Diffstat (limited to 'ikiwiki/formatting')
-rw-r--r-- | ikiwiki/formatting/index.html | 221 |
1 files changed, 221 insertions, 0 deletions
diff --git a/ikiwiki/formatting/index.html b/ikiwiki/formatting/index.html new file mode 100644 index 00000000000..765a07dc450 --- /dev/null +++ b/ikiwiki/formatting/index.html @@ -0,0 +1,221 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> + +<head> +<meta name="viewport" content="width=device-width, initial-scale=1.0" /> + +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> +<title>Formatting wiki pages</title> + +<link rel="stylesheet" href="../../bootstrap/css/bootstrap.min.css" type="text/css" /> +<link rel="stylesheet" href="../../bootstrap/css/bootstrap-responsive.min.css" /> + +<link rel="stylesheet" href="../../local.css" type="text/css" /> + + + + +<meta name="robots" content="noindex, follow" /> +<style type="text/css"> +@media (max-width: 979px) { + .navbar-fixed-top { + position: fixed; + margin-left: 0px; + margin-right: 0px; + } +} +</style> +</head> +<body> + +<div class="container"> + + <div class="row-fluid"> + <div class="span12"> + <h1></h1> + + <ul class="breadcrumb"> + + <li><a href="../../">Arquivo Público de Memória Coletiva</a> <span class="divider">/</span> </li> + + <li><a href="../">ikiwiki</a> <span class="divider">/</span> </li> + + <li>Formatting wiki pages</li> + <li><span class="divider">|</span> <a href="/meta">Meta</a></li> + <li><span class="divider">|</span> <a href="https://git.sarava.org/?p=arquivo.git;a=history;f=ikiwiki/formatting.mdwn">History</a></li> + <li><span class="divider">|</span> <a href="/index.rss">Feed</a></li> + </ul> + </div> + </div> + + <div class="page row-fluid"> + + <div> + <div class="pageheader"> + <div class="header"> + <h1> + Formatting wiki pages + + </h1> + + </div> + + </div> + + <div id="pagebody"> + + <div id="content"> + <p class="pagedate"> + <strong>Posted <span class="date">Qua 26 Ago 2009 14:05:29 BRT</span></strong> + </p> + <p>Text on this wiki is, by default, written in a form very close to how you +might write text for an email message. This style of text formatting is +called <a href="../markdown/">MarkDown</a>, and it works like this:</p> + +<p>Leave blank lines between paragraphs.</p> + +<p>You can <em>*emphasise*</em> or <strong>**strongly emphasise**</strong> text by placing it +in single or double asterisks.</p> + +<p>To create a list, start each line with an asterisk:</p> + +<ul> +<li>"* this is my list"</li> +<li>"* another item"</li> +</ul> + + +<p>To make a numbered list, start each line with a number (any number will +do) followed by a period:</p> + +<ol> +<li>"1. first line"</li> +<li>"2. second line"</li> +<li>"2. third line"</li> +</ol> + + +<p>To create a header, start a line with one or more <code>#</code> characters followed +by a space and the header text. The number of <code>#</code> characters controls the +size of the header:</p> + +<h1># h1</h1> + +<h2>## h2</h2> + +<h3>### h3</h3> + +<h4>#### h4</h4> + +<h5>##### h5</h5> + +<h6>###### h6</h6> + +<p>To create a horizontal rule, just write three or more dashes or stars on +their own line:</p> + +<hr /> + +<p>To quote someone, prefix the quote with ">":</p> + +<blockquote><p>To be or not to be, +that is the question.</p></blockquote> + +<p>To write a code block, indent each line with a tab or 4 spaces:</p> + +<pre><code>10 PRINT "Hello, world!" +20 GOTO 10 +</code></pre> + +<p>To link to an url or email address, you can just put the +url in angle brackets: <<a href="http://ikiwiki.info">http://ikiwiki.info</a>>, or you can use the +form [link text](url)</p> + +<hr /> + +<p>In addition to basic html formatting using <a href="../markdown/">MarkDown</a>, this wiki lets +you use the following additional features:</p> + +<ul> +<li><p>To link to another page on the wiki, place the page's name inside double +square brackets. So you would use <code>[[WikiLink]]</code> to link to <a href="../wikilink/">WikiLink</a>.</p></li> +<li><p>Insert <a href="../../smileys/">smileys</a> and some other useful symbols. <img src="../../smileys/smile.png" alt=":-)" /></p></li> +<li><p>Use <a href="../../shortcuts/">shortcuts</a> to link to common resources.</p> + +<p> [[!wikipedia War_of_1812]]</p></li> +<li><p>Create and fill out <a href="../../templates/">templates</a> for repeated chunks of +parameterized wiki text.</p></li> +<li><p>Insert various <a href="../directive/">directives</a> onto a page to perform useful +actions. +For example, you can:</p> + +<ul> +<li><p>Add a table of contents to a page:</p> + +<p>[[!toc ]]</p></li> +<li><p>Change the title of a page:</p> + +<p>[[!meta title="full page title"]]</p></li> +<li><p>Create a blog by inlining a set of pages:</p> + +<p>[[!inline pages="blog/*"]]</p></li> +</ul> +</li> +</ul> + + + </div> + + <hr /> + + + + + + </div> + + <div id="footer" class="pagefooter"> + + <div id="pageinfo"> + + + + + <div id="backlinks"> + Links: + + <a href="../">ikiwiki</a> + + <a href="../markdown/">markdown</a> + + + </div> + + + + + + + <!--<div class="pagedate"> + Last edited <span class="date">Qua 26 Ago 2009 14:05:29 BRT</span> + </div> --> + + </div> + + + <!-- from Arquivo Público de Memória Coletiva --> + </div> + + </div> + + <div class="span4"> + + + + </div> + + </div> +</div> + +</body> +</html> |