| layout | printable |
|---|---|
| title | Markdown Cheatsheet |
| published | true |
| sorting | 1 |
| alias | markdown-cheatsheet.html |
Markdown formatting is simple, and the CFEngine generator adds a few things to make it even simpler. Here's a list of the most commonly used formats.
One
Paragraph
Two
Paragraphs
One Paragraph
Two Paragraphs
**Bold** Bold
*Italic* Italic
[top of the page][Markdown Cheatsheet] and [inside page][Markdown Cheatsheet#Links]
[top of the page][Markdown Cheatsheet] and [inside page][Markdown Cheatsheet#Links]
Note: For known pages, see the _references.markdown file.
The documentation pre-processor will create those automatically.
`classes` and `readfile()`
classes and readfile()
[Markdown Documentation](http://daringfireball.net/projects/markdown/)
Unordered lists - Markdown supports other markers than the asterisk, but in
CFEngine we use only *.
* Item 1
* Item 2
* Item 2a
* Multi paragraph item
Four spaces indented
-
Item 1
-
Item 2
- Item 2a
-
Multi paragraph item
Four spaces indented
Ordered lists - the numbers you use don't matter.
1. first
1. second
9. Third
- first
- second
- Third
If you want to include a code block within a list, put two tabs (8 spaces) in front of the entire block.
-
First
```cf3 # CFEngine block bundle agent example() { } ``` -
Second
-
Third
Wiki-syntax for tables is supported, and you can be a bit sloppy
about it, although it's better to align the | properly.
| Header | Left aligned | Centered | Right aligned |
|--------|:-------------|:--------:|--------------:|
|text | text | X | 234 |
| Header | Left aligned | Centered | Right aligned |
|---|---|---|---|
| text | text | X | 234 |
Syntax highlighting is provided by pygments. Find all available lexers here.
Just indent by four spaces:
$ code block
$ without syntax highlighting
$ code block
$ without syntax highlighting
If you want CFEngine syntax highlighting, use
```cf3
# CFEngine block
bundle agent example()
{
}
```
# CFEngine code block
bundle agent example()
{
}
Other frequently used syntax highlighers shown below.
```bash
#!/bin/bash
echo hi
for i in `seq 1 10`;
do
echo $i
done
```
#!/bin/bash
echo hi
for i in `seq 1 10`;
do
echo $i
done ```console
root@policy_server # /etc/init.d/cfengine3 stop
```
root@policy_server # /etc/init.d/cfengine3 stop ```sql
SELECT
FileChanges.FileName,
Count(Distinct(FileChanges.HostKey)) AS DistinctHostCount,
COUNT(1) AS ChangeCount
FROM
FileChanges JOIN Contexts
WHERE
Contexts.ContextName='ubuntu'
GROUP BY
FileChanges.FileName
ORDER BY
ChangeCount DESC
```
SELECT
FileChanges.FileName,
Count(Distinct(FileChanges.HostKey)) AS DistinctHostCount,
COUNT(1) AS ChangeCount
FROM
FileChanges JOIN Contexts
WHERE
Contexts.ContextName='ubuntu'
GROUP BY
FileChanges.FileName
ORDER BY
ChangeCount DESC ```diff
diff --git a/README.md b/README.md
index 92555a2..b49c0bb 100644
--- a/README.md
+++ b/README.md
@@ -377,8 +377,12 @@ As a general note, avoiding abbreviations provides better readability.
* follow the [Policy Style Guide](manuals/policy-style.markdown)
in examples and code snippets
-* always run it through Pygments plus the appropriate lexer (only cf3
- supported for now)
+* always run it through Pygments plus the appropriate lexer
+
+Most important are the `cf3` lexer, as well as `bash`, `console`,
+`diff`, `shell-session` and `postgresql`. But Jekyll supports
+[many more lexers](http://pygments.org/docs/lexers/)
+
* avoid custom color schemes and hand-coded HTML
* document the example after the example code
```
diff --git a/README.md b/README.md
index 92555a2..b49c0bb 100644
--- a/README.md
+++ b/README.md
@@ -377,8 +377,12 @@ As a general note, avoiding abbreviations provides better readability.
* follow the [Policy Style Guide](manuals/policy-style.markdown)
in examples and code snippets
-* always run it through Pygments plus the appropriate lexer (only cf3
- supported for now)
+* always run it through Pygments plus the appropriate lexer
+
+Most important are the `cf3` lexer, as well as `bash`, `console`,
+`diff`, `shell-session` and `postgresql`. But Jekyll supports
+[many more lexers](http://pygments.org/docs/lexers/)
+
* avoid custom color schemes and hand-coded HTML
* document the example after the example codeNotes: You need to keep an empty line in front of the code block. And to put code into a list item, the code needs to be indented twice, ie:
* List item with code
<code goes here>
-
List item with code
<code goes here>
This renders as `inline code`.
This renders as inline code.
***
# Level 1
## Level 2
### Level 3
#### Level 4
##### Level 5
###### Level 6