~ubuntu-branches/ubuntu/natty/moin/natty-updates

« back to all changes in this revision

Viewing changes to wiki/underlay/pages/WikiCourse(2f)10(20)Text(20)layout(20)with(20)wiki(20)markup/revisions/00000001

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-06-22 21:17:13 UTC
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20080622211713-inlv5k4eifxckelr
ImportĀ upstreamĀ versionĀ 1.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Please edit system and help pages ONLY in the master wiki!
 
2
## For more information, please see MoinMoin:MoinDev/Translation.
 
3
## page was renamed from WikiCourse/10 Text layout with wiki-markup
 
4
##master-page:
 
5
##master-date:
 
6
#acl -All:write Default
 
7
#format wiki
 
8
#language en
 
9
#pragma section-numbers off
 
10
<<Navigation(slides)>>
 
11
= Text layout with wiki markup =
 
12
 
 
13
MoinMoin does ''not'' simply use HTML (the ''!HyperText Markup Language'' usually used for websites), but its own, simplified '''!MoinMoin Wiki Markup Language''', MoinMoin's convention for the input of content.
 
14
 
 
15
== HTML ==
 
16
{{{
 
17
<h1>Headline</h1>
 
18
<p>This is a link to my own homepage: <a href="/FirstnameLastname">FirstnameLastname</a></p>
 
19
<p>A list:
 
20
<ul>
 
21
 <li>foo</li>
 
22
 <li>bar</li>
 
23
</ul>
 
24
</p>
 
25
}}}
 
26
 
 
27
== MoinMoin wiki ==
 
28
{{{
 
29
= Headline =
 
30
This is a link to my own homepage: FirstnameLastname
 
31
 
 
32
A list:
 
33
 * foo
 
34
 * bar
 
35
}}}
 
36
 
 
37
(!) The MoinMoin wiki markup will be explained in more detail on the following pages.