<%= stylesheet_link_tag "wiki_syntax.css" %>

Wiki Syntax Quick Reference (CommonMark Markdown (GitHub Flavored))

Font Styles (" target="_blank">more)
<%= image_tag("jstoolbar/bold.svg", { alt: "Strong" }) %>**Strong**Strong
<%= image_tag("jstoolbar/italic.svg", { alt: "Italic" }) %>*Italic*Italic
<%= image_tag("jstoolbar/strikethrough.svg", { alt: "Deleted" }) %>~~Deleted~~Deleted
<%= image_tag("jstoolbar/letter-c.svg", { alt: "Inline code" }) %>`Inline Code`Inline Code
```
 lines
 of code
```
 lines
 of code
Highlighted code (" target="_blank">more)
<%= image_tag("jstoolbar/code.svg", { alt: "Highlighted code" }) %>```ruby
3.times do
  puts 'Hello'
end
```
3.times do
  puts 'Hello'
end
Line breaks and Paragraphs
An empty line

creates
a new paragraph.

An empty line

creates a new paragraph.

End a line with a backslash\
or two spaces to insert a manual line break.

End a line with a backslash
or two spaces to insert a manual line break.

Lists
<%= image_tag("jstoolbar/list.svg", { alt: "Unordered list" }) %>* Item 1
  * Sub
* Item 2
  • Item 1
    • Sub
  • Item 2
<%= image_tag("jstoolbar/list-numbers.svg", { alt: "Ordered list" }) %>1. Item 1
   1. Sub
2. Item 2
  1. Item 1
    1. Sub
  2. Item 2
<%= image_tag("jstoolbar/list-check.svg", { alt: "Task list" }) %>* [ ] Item 1
* [x] Item 2
  • Item 1
  • Item 2
Headings (" target="_blank">more)
<%= image_tag("jstoolbar/h1.svg", { alt: "Heading 1" }) %># Title 1

Title 1

<%= image_tag("jstoolbar/h2.svg", { alt: "Heading 2" }) %>## Title 2

Title 2

<%= image_tag("jstoolbar/h3.svg", { alt: "Heading 3" }) %>### Title 3

Title 3

Links (" target="_blank">more)
www.foo.barwww.foo.bar
http://foo.barhttp://foo.bar
[Foo](http://foo.bar)Foo
Redmine links (" target="_blank">more)
<%= image_tag("jstoolbar/wiki_link.svg", { alt: "Link to a Wiki page" }) %>[[Wiki page]]Wiki page
Issue #12Issue #12
##12Bug #12: The issue subject
Revision r43Revision r43
commit:f30e13e43f30e13e4
source:some/filesource:some/file
Inline images (" target="_blank">more)
<%= image_tag("jstoolbar/image.svg", { alt: "Image" }) %>![](image_url)
![](attached_image)
Tables
| A | B | C |
|---|---|---|
| A | B | C |
| D | E | F |
ABC
ABC
DEF
Raw HTML (" target="_blank">more)
HTML is <del>not</del> <u>allowed</u>.HTML is not allowed.

More Information