<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://aznot.com/index.php?action=history&amp;feed=atom&amp;title=GitHub%2FGitHub_Flavored_Markdown</id>
	<title>GitHub/GitHub Flavored Markdown - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://aznot.com/index.php?action=history&amp;feed=atom&amp;title=GitHub%2FGitHub_Flavored_Markdown"/>
	<link rel="alternate" type="text/html" href="https://aznot.com/index.php?title=GitHub/GitHub_Flavored_Markdown&amp;action=history"/>
	<updated>2026-05-06T07:04:22Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://aznot.com/index.php?title=GitHub/GitHub_Flavored_Markdown&amp;diff=6215&amp;oldid=prev</id>
		<title>Kenneth: /* List Items */</title>
		<link rel="alternate" type="text/html" href="https://aznot.com/index.php?title=GitHub/GitHub_Flavored_Markdown&amp;diff=6215&amp;oldid=prev"/>
		<updated>2023-04-29T15:07:52Z</updated>

		<summary type="html">&lt;p&gt;&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;List Items&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== GitHub Flavored Markdown ==&lt;br /&gt;
&lt;br /&gt;
GitHub Flavored Markdown · GitHub Help - https://help.github.com/articles/github-flavored-markdown&lt;br /&gt;
&lt;br /&gt;
Daring Fireball: Markdown Syntax Documentation - http://daringfireball.net/projects/markdown/syntax&lt;br /&gt;
&lt;br /&gt;
Markdown Cheatsheet · adam-p/markdown-here Wiki - https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet&lt;br /&gt;
&lt;br /&gt;
Getting Started - https://githubtraining.github.io/training-manual/#/02_getting_started&lt;br /&gt;
&lt;br /&gt;
== Markdown Tutorial ==&lt;br /&gt;
&lt;br /&gt;
 https://commonmark.org/help/tutorial/&lt;br /&gt;
&lt;br /&gt;
 https://spec.commonmark.org/dingus/&lt;br /&gt;
&lt;br /&gt;
 https://commonmark.org/help/&lt;br /&gt;
&lt;br /&gt;
== Code ==&lt;br /&gt;
&lt;br /&gt;
=== new lines ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
These will&lt;br /&gt;
be on the same line&lt;br /&gt;
&lt;br /&gt;
These will[space][space]&lt;br /&gt;
be on a different line&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== header levels ===&lt;br /&gt;
&lt;br /&gt;
 # h1&lt;br /&gt;
 ## h2&lt;br /&gt;
 #### h4&lt;br /&gt;
&lt;br /&gt;
 level 1&lt;br /&gt;
 =======&lt;br /&gt;
&lt;br /&gt;
 level 2&lt;br /&gt;
 -------&lt;br /&gt;
&lt;br /&gt;
=== Text Styles ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
*This text will be italic*&lt;br /&gt;
&lt;br /&gt;
_This will also be italic_&lt;br /&gt;
&lt;br /&gt;
**This text will be bold**&lt;br /&gt;
&lt;br /&gt;
__This will also be bold__&lt;br /&gt;
&lt;br /&gt;
___This will be combined bold and italic___&lt;br /&gt;
&lt;br /&gt;
***This will also be combined bold and italic***&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== code blocks ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
    four spaces will&lt;br /&gt;
    make this a &amp;#039;pre&amp;#039; block&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Fenced code blocks: (similar to &amp;#039;pre&amp;#039; block)&lt;br /&gt;
 ```&lt;br /&gt;
 code&lt;br /&gt;
 ```&lt;br /&gt;
&lt;br /&gt;
In line word fencing:&lt;br /&gt;
 some `fenced words` fenced&lt;br /&gt;
&lt;br /&gt;
Highlighted code block:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
```javascript&lt;br /&gt;
...&lt;br /&gt;
```&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== List Items ===&lt;br /&gt;
&lt;br /&gt;
A single * or - followed by a space will create a bulleted list.&lt;br /&gt;
 * Item 1&lt;br /&gt;
 * Item 2&lt;br /&gt;
&lt;br /&gt;
 - Item 1&lt;br /&gt;
 - Item 2&lt;br /&gt;
&lt;br /&gt;
Ordered lists: (any number and dot)&lt;br /&gt;
 1. item 1&lt;br /&gt;
 1. item 2&lt;br /&gt;
 1. item 3&lt;br /&gt;
&lt;br /&gt;
Sub Lists:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
* parent&lt;br /&gt;
   * child&lt;br /&gt;
&lt;br /&gt;
1. parent&lt;br /&gt;
   1. child&lt;br /&gt;
1. another&lt;br /&gt;
   * child&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Checklist ===&lt;br /&gt;
&lt;br /&gt;
A - followed by a space and [ ] will create a handy checklist in your issue or pull request.&lt;br /&gt;
 - [ ] item 1&lt;br /&gt;
 - [ ] item 2&lt;br /&gt;
&lt;br /&gt;
=== Mentions ===&lt;br /&gt;
&lt;br /&gt;
When you @mention someone in an issue, they will receive a notification - even if they are not currently subscribed to the issue or watching the repository.&lt;br /&gt;
 @mention&lt;br /&gt;
&lt;br /&gt;
=== Issue ===&lt;br /&gt;
&lt;br /&gt;
A # followed by the number of an issue or pull request (without a space) in the same repository will create a cross-link.&lt;br /&gt;
 #975&lt;br /&gt;
&lt;br /&gt;
=== Emoji ===&lt;br /&gt;
&lt;br /&gt;
GitHub allows you to drop emoji into your comments. Simply surround the emoji ID with :.&lt;br /&gt;
 :smiley:&lt;br /&gt;
&lt;br /&gt;
== GitHub Pages ==&lt;br /&gt;
&lt;br /&gt;
For a project site, GitHub will only serve content from a specified branch. You can also choose to publish your site from a /docs folder on the specified branch.&lt;br /&gt;
 /doc&lt;br /&gt;
&lt;br /&gt;
The rendered sites for our projects will appear at githubschool.github.io/repo-name.&lt;br /&gt;
 http://githubschool.github.io/repo-name&lt;br /&gt;
&lt;br /&gt;
== Sample Content ==&lt;br /&gt;
&lt;br /&gt;
Sample content: [http://github.github.com/github-flavored-markdown/sample_content.html] (even this doesn&amp;#039;t work as described!)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
GitHub Flavored Markdown&lt;br /&gt;
================================&lt;br /&gt;
&lt;br /&gt;
*View the [source of this content](http://github.github.com/github-flavored-markdown/sample_content.html).*&lt;br /&gt;
&lt;br /&gt;
Let&amp;#039;s get the whole &amp;quot;linebreak&amp;quot; thing out of the way. The next paragraph contains two phrases separated by a single newline character:&lt;br /&gt;
&lt;br /&gt;
Roses are red&lt;br /&gt;
Violets are blue&lt;br /&gt;
&lt;br /&gt;
The next paragraph has the same phrases, but now they are separated by two spaces and a newline character:&lt;br /&gt;
&lt;br /&gt;
Roses are red  &lt;br /&gt;
Violets are blue&lt;br /&gt;
&lt;br /&gt;
Oh, and one thing I cannot stand is the mangling of words with multiple underscores in them like perform_complicated_task or do_this_and_do_that_and_another_thing.&lt;br /&gt;
&lt;br /&gt;
A bit of the GitHub spice&lt;br /&gt;
-------------------------&lt;br /&gt;
&lt;br /&gt;
In addition to the changes in the previous section, certain references are auto-linked:&lt;br /&gt;
&lt;br /&gt;
* SHA: be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2&lt;br /&gt;
* User@SHA ref: mojombo@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2&lt;br /&gt;
* User/Project@SHA: mojombo/god@be6a8cc1c1ecfe9489fb51e4869af15a13fc2cd2&lt;br /&gt;
* \#Num: #1&lt;br /&gt;
* User/#Num: mojombo#1&lt;br /&gt;
* User/Project#Num: mojombo/god#1&lt;br /&gt;
&lt;br /&gt;
These are dangerous goodies though, and we need to make sure email addresses don&amp;#039;t get mangled:&lt;br /&gt;
&lt;br /&gt;
My email addy is tom@github.com.&lt;br /&gt;
&lt;br /&gt;
Math is hard, let&amp;#039;s go shopping&lt;br /&gt;
-------------------------------&lt;br /&gt;
&lt;br /&gt;
In first grade I learned that 5 &amp;gt; 3 and 2 &amp;lt; 7. Maybe some arrows. 1 -&amp;gt; 2 -&amp;gt; 3. 9 &amp;lt;- 8 &amp;lt;- 7.&lt;br /&gt;
&lt;br /&gt;
Triangles man! a^2 + b^2 = c^2&lt;br /&gt;
&lt;br /&gt;
We all like making lists&lt;br /&gt;
------------------------&lt;br /&gt;
&lt;br /&gt;
The above header should be an H2 tag. Now, for a list of fruits:&lt;br /&gt;
&lt;br /&gt;
* Red Apples&lt;br /&gt;
* Purple Grapes&lt;br /&gt;
* Green Kiwifruits&lt;br /&gt;
&lt;br /&gt;
Let&amp;#039;s get crazy:&lt;br /&gt;
&lt;br /&gt;
1.  This is a list item with two paragraphs. Lorem ipsum dolor&lt;br /&gt;
    sit amet, consectetuer adipiscing elit. Aliquam hendrerit&lt;br /&gt;
    mi posuere lectus.&lt;br /&gt;
&lt;br /&gt;
    Vestibulum enim wisi, viverra nec, fringilla in, laoreet&lt;br /&gt;
    vitae, risus. Donec sit amet nisl. Aliquam semper ipsum&lt;br /&gt;
    sit amet velit.&lt;br /&gt;
&lt;br /&gt;
2.  Suspendisse id sem consectetuer libero luctus adipiscing.&lt;br /&gt;
&lt;br /&gt;
What about some code **in** a list? That&amp;#039;s insane, right?&lt;br /&gt;
&lt;br /&gt;
1. In Ruby you can map like this:&lt;br /&gt;
&lt;br /&gt;
        [&amp;#039;a&amp;#039;, &amp;#039;b&amp;#039;].map { |x| x.uppercase }&lt;br /&gt;
&lt;br /&gt;
2. In Rails, you can do a shortcut:&lt;br /&gt;
&lt;br /&gt;
        [&amp;#039;a&amp;#039;, &amp;#039;b&amp;#039;].map(&amp;amp;:uppercase)&lt;br /&gt;
&lt;br /&gt;
Some people seem to like definition lists&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
  &amp;lt;dt&amp;gt;Lower cost&amp;lt;/dt&amp;gt;&lt;br /&gt;
  &amp;lt;dd&amp;gt;The new version of this product costs significantly less than the previous one!&amp;lt;/dd&amp;gt;&lt;br /&gt;
  &amp;lt;dt&amp;gt;Easier to use&amp;lt;/dt&amp;gt;&lt;br /&gt;
  &amp;lt;dd&amp;gt;We&amp;#039;ve changed the product so that it&amp;#039;s much easier to use!&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I am a robot&lt;br /&gt;
------------&lt;br /&gt;
&lt;br /&gt;
Maybe you want to print `robot` to the console 1000 times. Why not?&lt;br /&gt;
&lt;br /&gt;
    def robot_invasion&lt;br /&gt;
      puts(&amp;quot;robot &amp;quot; * 1000)&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
You see, that was formatted as code because it&amp;#039;s been indented by four spaces.&lt;br /&gt;
&lt;br /&gt;
How about we throw some angle braces and ampersands in there?&lt;br /&gt;
&lt;br /&gt;
    &amp;lt;div class=&amp;quot;footer&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;amp;copy; 2004 Foo Corporation&lt;br /&gt;
    &amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Set in stone&lt;br /&gt;
------------&lt;br /&gt;
&lt;br /&gt;
Preformatted blocks are useful for ASCII art:&lt;br /&gt;
&lt;br /&gt;
&amp;amp;lt;pre&amp;gt;&lt;br /&gt;
             ,-. &lt;br /&gt;
    ,     ,-.   ,-. &lt;br /&gt;
   / \   (   )-(   ) &lt;br /&gt;
   \ |  ,.&amp;gt;-(   )-&amp;lt; &lt;br /&gt;
    \|,&amp;#039; (   )-(   ) &lt;br /&gt;
     Y ___`-&amp;#039;   `-&amp;#039; &lt;br /&gt;
     |/__/   `-&amp;#039; &lt;br /&gt;
     | &lt;br /&gt;
     | &lt;br /&gt;
     |    -hrr- &lt;br /&gt;
  ___|_____________ &lt;br /&gt;
&amp;amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Playing the blame game&lt;br /&gt;
----------------------&lt;br /&gt;
&lt;br /&gt;
If you need to blame someone, the best way to do so is by quoting them:&lt;br /&gt;
&lt;br /&gt;
&amp;gt; I, at any rate, am convinced that He does not throw dice.&lt;br /&gt;
&lt;br /&gt;
Or perhaps someone a little less eloquent:&lt;br /&gt;
&lt;br /&gt;
&amp;gt; I wish you&amp;#039;d have given me this written question ahead of time so I&lt;br /&gt;
&amp;gt; could plan for it... I&amp;#039;m sure something will pop into my head here in&lt;br /&gt;
&amp;gt; the midst of this press conference, with all the pressure of trying to&lt;br /&gt;
&amp;gt; come up with answer, but it hadn&amp;#039;t yet...&lt;br /&gt;
&amp;gt;&lt;br /&gt;
&amp;gt; I don&amp;#039;t want to sound like&lt;br /&gt;
&amp;gt; I have made no mistakes. I&amp;#039;m confident I have. I just haven&amp;#039;t - you&lt;br /&gt;
&amp;gt; just put me under the spot here, and maybe I&amp;#039;m not as quick on my feet&lt;br /&gt;
&amp;gt; as I should be in coming up with one.&lt;br /&gt;
&lt;br /&gt;
Table for two&lt;br /&gt;
-------------&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;th&amp;gt;ID&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;Name&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;Rank&amp;lt;/th&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Tom Preston-Werner&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Awesome&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
    &amp;lt;td&amp;gt;2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Albert Einstein&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Nearly as awesome&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Crazy linking action&lt;br /&gt;
--------------------&lt;br /&gt;
&lt;br /&gt;
I get 10 times more traffic from [Google] [1] than from&lt;br /&gt;
[Yahoo] [2] or [MSN] [3].&lt;br /&gt;
&lt;br /&gt;
  [1]: http://google.com/        &amp;quot;Google&amp;quot;&lt;br /&gt;
  [2]: http://search.yahoo.com/  &amp;quot;Yahoo Search&amp;quot;&lt;br /&gt;
  [3]: http://search.msn.com/    &amp;quot;MSN Search&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== My Sample ==&lt;br /&gt;
&lt;br /&gt;
Source: https://github.com/kiloforce/markdowntest&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;!-- Source: https://github.com/kiloforce/markdowntest --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
# This is an h1 level tag&lt;br /&gt;
## This is an h2 level tag&lt;br /&gt;
###### This is an h6 level tag&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- This is a&lt;br /&gt;
comment, has to be on a new line! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- line breaks are merged --&amp;gt;&lt;br /&gt;
Roses are Red&lt;br /&gt;
Violets are Blue&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Text Styles:&lt;br /&gt;
&lt;br /&gt;
*This text will be italic*&lt;br /&gt;
&lt;br /&gt;
_This will also be italic_&lt;br /&gt;
&lt;br /&gt;
**This text will be bold**&lt;br /&gt;
&lt;br /&gt;
__This will also be bold__&lt;br /&gt;
&lt;br /&gt;
___This will be combined bold and italic___&lt;br /&gt;
&lt;br /&gt;
***This will also be combined bold and italic***&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Unordered Lists:&lt;br /&gt;
&lt;br /&gt;
* Item 1&lt;br /&gt;
* Item 2&lt;br /&gt;
  * Item 2a&lt;br /&gt;
  * Item 2b&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ordered Lists:&lt;br /&gt;
&amp;lt;!-- make sure to have a line seperation --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. Item 1&lt;br /&gt;
2. Item 2&lt;br /&gt;
3. Item 3&lt;br /&gt;
   * Item 3a&lt;br /&gt;
   * Item 3b&lt;br /&gt;
&lt;br /&gt;
Images:&lt;br /&gt;
![GitHub Logo](http://icons.iconarchive.com/icons/icons-land/vista-hardware-devices/256/Hardware-Chip-icon.png)&lt;br /&gt;
Format: ![Alt Text](http://icons.iconarchive.com/icons/icons-land/vista-hardware-devices/256/Hardware-Chip-icon.png)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Links:&lt;br /&gt;
http://github.com - automatic!&lt;br /&gt;
[GitHub](http://github.com)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Blockquotes:&lt;br /&gt;
As Kanye West said:&lt;br /&gt;
&lt;br /&gt;
&amp;gt; We&amp;#039;re living the future so&lt;br /&gt;
&amp;gt; the present is our past.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Syntax highlighting:&lt;br /&gt;
```javascript&lt;br /&gt;
function fancyAlert(arg) {&lt;br /&gt;
  if(arg) {&lt;br /&gt;
    $.facebox({div:&amp;#039;#foo&amp;#039;})&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
```&lt;br /&gt;
This is how you do&lt;br /&gt;
preformatted text&lt;br /&gt;
   XX&lt;br /&gt;
 XX  XX&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here is a Python code example&lt;br /&gt;
without syntax highlighting:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Make sure to have 4 spaces in front --&amp;gt;&lt;br /&gt;
    def foo:&lt;br /&gt;
      if not bar:&lt;br /&gt;
        return true&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
`&lt;br /&gt;
I am in a box, but I am not preformatted&lt;br /&gt;
  XX&lt;br /&gt;
XX  XX&lt;br /&gt;
`&lt;br /&gt;
&lt;br /&gt;
Task Lists:&lt;br /&gt;
- [ ] a task list item&lt;br /&gt;
- [ ] list syntax required&lt;br /&gt;
- [ ] normal **formatting**,&lt;br /&gt;
      @mentions, #1234 refs&lt;br /&gt;
- [ ] incomplete&lt;br /&gt;
- [x] completed&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I think you should use an&lt;br /&gt;
`&amp;lt;addr&amp;gt;` element here instead.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Kenneth</name></author>
	</entry>
</feed>