aboutsummaryrefslogtreecommitdiff
path: root/ikiwiki/formatting/index.html
diff options
context:
space:
mode:
authorCache Saravento <cache@sarava.org>2015-08-07 14:07:50 -0300
committerCache Saravento <cache@sarava.org>2015-08-07 14:07:50 -0300
commiteeb7c436cc670a5910bc868bc2afaa06933334dd (patch)
tree2661af3c1a22ffc2c2b7b7f5a3b7b7b0f28c7eab /ikiwiki/formatting/index.html
parentf9d22a65481e2bdfc26a9f2c66ce2bf6ff8f6bd8 (diff)
downloadcache-eeb7c436cc670a5910bc868bc2afaa06933334dd.tar.gz
cache-eeb7c436cc670a5910bc868bc2afaa06933334dd.tar.bz2
Static generated site
Diffstat (limited to 'ikiwiki/formatting/index.html')
-rw-r--r--ikiwiki/formatting/index.html221
1 files changed, 221 insertions, 0 deletions
diff --git a/ikiwiki/formatting/index.html b/ikiwiki/formatting/index.html
new file mode 100644
index 0000000..bce7005
--- /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="../../">Cache Saravento</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="../../tarefas">Tarefas</a></li>
+ <li><span class="divider">|</span> <a href="https://git.sarava.org/?p=cache.git;a=history;f=ikiwiki/formatting.mdwn">Histórico</a></li>
+ <li><span class="divider">|</span> <a href="https://git.sarava.org/?p=cache.git;a=atom">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 "&gt;":</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: &lt;<a href="http://ikiwiki.info">http://ikiwiki.info</a>&gt;, 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 Cache Saravento -->
+ </div>
+
+ </div>
+
+ <div class="span4">
+
+
+
+ </div>
+
+ </div>
+</div>
+
+</body>
+</html>