ghpages-ghcomments icon indicating copy to clipboard operation
ghpages-ghcomments copied to clipboard

The Phrenic Shrine Reveals Itself

Open wireddown opened this issue 10 years ago • 56 comments
trafficstars

This is the comment thread for The Phrenic Shrine Reveals Itself.

wireddown avatar Jan 21 '15 04:01 wireddown

Source: https://help.github.com/articles/markdown-basics

wireddown avatar Jan 21 '15 04:01 wireddown

Paragraphs

Paragraphs in Markdown are just one or more lines of consecutive text followed by one or more blank lines.

On July 2, an alien mothership entered Earth's orbit and deployed several dozen saucer-shaped "destroyer" spacecraft, each 15 miles (24 km) wide.

On July 3, the Black Knights, a squadron of Marine Corps F/A-18 Hornets, participated

wireddown avatar Jan 21 '15 04:01 wireddown

Headings

You can create a heading by adding one or more # symbols before your heading text. The number of # you use will determine the size of the heading.

The largest heading (an

tag)

The second largest heading (an

tag)

The 6th largest heading (an
tag)

wireddown avatar Jan 21 '15 04:01 wireddown

Blockquotes

You can indicate blockquotes with a >.

In the words of Abraham Lincoln:

Pardon my french

wireddown avatar Jan 21 '15 04:01 wireddown

Styling text

You can make text bold or italic.

This text will be italic This text will be bold

Both bold and italic can use either a * or an _ around the text for styling. This allows you to combine both bold and italic if needed.

Everyone must attend the meeting at 5 o'clock today.

wireddown avatar Jan 21 '15 04:01 wireddown

Unordered lists

You can make an unordered list by preceding list items with either a * or a -.

  • Item
  • Item
  • Item
  • Item
  • Item
  • Item

wireddown avatar Jan 21 '15 04:01 wireddown

Ordered lists

You can make an ordered list by preceding list items with a number.

  1. Item 1
  2. Item 2
  3. Item 3

wireddown avatar Jan 21 '15 04:01 wireddown

Nested lists

You can create nested lists by indenting list items by two spaces.

  1. Item 1
    1. A corollary to the above item.
    2. Yet another point to consider.
  2. Item 2
    • A corollary that does not need to be ordered.
      • This is indented four spaces, because it's two spaces further than the item above.
      • You might want to consider making a new list.
  3. Item 3

wireddown avatar Jan 21 '15 04:01 wireddown

Inline formats

Use single backticks (`) to format text in a special monospace format. Everything within the backticks appear as-is, with no other special formatting.

Here's an idea: why don't we take SuperiorProject and turn it into **Reasonable**Project.

wireddown avatar Jan 21 '15 04:01 wireddown

Multiple lines

You can use triple backticks (```) to format text as its own distinct block.

Check out this neat program I wrote:

x = 0
x = 2 + 2
what is x

wireddown avatar Jan 21 '15 04:01 wireddown

Links

You can create an inline link by wrapping link text in brackets ( [ ] ), and then wrapping the link in parentheses ( ( ) ).

For example, to create a hyperlink to www.github.com, with a link text that says, Visit GitHub!, you'd write this in Markdown: Visit GitHub!.

wireddown avatar Jan 21 '15 04:01 wireddown

Strikethrough

GFM adds syntax to create strikethrough text, which is missing from standard Markdown.

~~Mistaken text.~~

wireddown avatar Jan 21 '15 04:01 wireddown

Code blocks can be taken a step further by adding syntax highlighting. In your fenced block, add an optional language identifier and we'll run it through syntax highlighting. For example, to syntax highlight Ruby code:

require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html

wireddown avatar Jan 21 '15 04:01 wireddown

By including colons : within the header row, you can define text to be left-aligned, right-aligned, or center-aligned:

Left-Aligned Center Aligned Right Aligned
col 3 is some wordy text $1600
col 2 is centered $12
zebra stripes are neat $1

A colon on the left-most side indicates a left-aligned column; a colon on the right-most side indicates a right-aligned column; a colon on both sides indicates a center-aligned column.

wireddown avatar Jan 21 '15 04:01 wireddown

Lists can be turned into task lists by prefacing list items with [ ] or [x](incomplete or complete, respectively).

  • [x] @mentions, #refs, links, formatting, and tags are supported
  • [x] list syntax is required (any unordered or ordered list supported)
  • [x] this is a complete item
  • [ ] this is an incomplete item

wireddown avatar Jan 21 '15 04:01 wireddown

Task lists can be nested to better structure your tasks:

  • [ ] a bigger project
    • [ ] first subtask #1234
    • [ ] follow up subtask #4321
    • [ ] final subtask cc @mention
  • [ ] a separate task

wireddown avatar Jan 21 '15 04:01 wireddown

Certain references are auto-linked:

  • SHA: a5c3785ed8d6a35868bc169f07e40e889087fd2e
  • User@SHA: jlord@a5c3785ed8d6a35868bc169f07e40e889087fd2e
  • User/Repository@SHA: jlord/sheetsee.js@a5c3785ed8d6a35868bc169f07e40e889087fd2e
  • #Num: #26
  • GH-Num: GH-26
  • User#Num: jlord#26
  • User/Repository#Num: jlord/sheetsee.js#26

wireddown avatar Jan 21 '15 05:01 wireddown

this is a test comment

nabn avatar Sep 25 '15 16:09 nabn

So, does this makes a PR? That would be great, as you'd even have a way to moderate comments then.

bernardosulzbach avatar Nov 16 '15 23:11 bernardosulzbach

Oh, OK. It does not. I see it is not stored in GH, which is nice to keep the repository leaner. Kudos for you for this. Looks nice.

bernardosulzbach avatar Nov 16 '15 23:11 bernardosulzbach

Comments are stored in GitHub as issues not pull requests. This comment thread is stored here: https://github.com/wireddown/ghpages-ghcomments/issues/5

wireddown avatar Nov 17 '15 00:11 wireddown

@wireddown Oh, so that's why I didn't find a file with it.

bernardosulzbach avatar Nov 17 '15 01:11 bernardosulzbach

this is indeed freaking awesome! much cooler than the supposed original idea. :)

missing:

  • the reactions
  • [owner] flag
  • self perma-hashtag-link in each comment
  • links to github issue (such as a small # on the corner so we can delete / edit)
  • better css formatting / font (trivial huh? at least remove the extra slashes from nested list :P)

cauerego avatar Mar 05 '17 15:03 cauerego

Thanks for the ideas :-)

wireddown avatar Mar 16 '17 16:03 wireddown

Test comment here.

flipp5b avatar May 09 '17 14:05 flipp5b

lll

weitzman avatar May 18 '17 14:05 weitzman

Have a try

duanqz avatar Sep 14 '17 10:09 duanqz

Teste

franklinbaldo avatar Oct 04 '17 05:10 franklinbaldo

Attempt to post a comment.

wireddown avatar Oct 22 '17 20:10 wireddown

There is a Oops! below. Is there any body maintain this website?

dymodi avatar Oct 24 '17 08:10 dymodi