Note: You are currently viewing documentation for Moodle 2.9. Up-to-date documentation for the latest stable version of Moodle may be available here: Creole format.

Creole format: Difference between revisions

From MoodleDocs
(removing 2.0 template)
m (fix link to wikipedia)
 
(2 intermediate revisions by 2 users not shown)
Line 57: Line 57:
==See also==
==See also==


* [[wikipedia:Creole_(markup)|Creole (markup) - Wikipedia]]
* [http://en.wikipedia.org/wiki/Creole_%28markup%29 Creole (markup) - Wikipedia]

Latest revision as of 18:12, 20 January 2014


Creole is a common wiki markup language for which a small edit toolbar is available in Moodle.

Creole syntax examples

Emphasized text:

//emphasized// (e.g., italics)

**strongly emphasized** (e.g., bold)

Lists:

* Bullet list
* Second item
** Sub item
# Numbered list
# Second item
## Sub item

Links:

Link to [[wikipage]]
[[link_address|link text]]

Headings: (closing equals signs are optional)

= Extra-large heading
== Large heading
=== Medium heading
==== Small heading

Linebreaks:

Force\\linebreak

Horizontal Line:

----

Images:

{{Image.jpg|title}}

Tables:

|= |= table |= header |
| a | table | row |
| b | table | row |

No markup:

{{{
This text will //not// be **formatted**.
}}}

See also