-
5 votes
-
Eight contemporary artists making the most of modular synth
6 votes -
Immigration and Customs Enforcement claimed a Dreamer was “gang-affiliated” and tried to deport him. A US federal judge ruled that ICE was lying.
6 votes -
How Mueller’s first year compares to Watergate, Iran-Contra and Whitewater
5 votes -
They didn't flip: Ukraine claims dolphin army captured by Russia went on hunger strike
6 votes -
DR Congo Ebola outbreak spreads to Mbandaka city
4 votes -
Missing files in the US Treasury Department's FINCEN database motivated a law-enforcement official to leak Michael Cohen's financial records
4 votes -
Rodion G.A. - Cantec Fulger
5 votes -
Ronnie Butler & The Ramblers - Echoes Of My Mind (Cover of Nilsson's "Everybody's Talkin'")
4 votes -
Testing markdown
18-Nov-2011: Updated to include the latest markdown changes. ####Contents Basic text formatting (Italics, Bold, ~~Strikethrough~~, Super^script, inline code, Quoting) Linking Line Breaks &...
18-Nov-2011: Updated to include the latest markdown changes.####Contents
- Basic text formatting (Italics, Bold,
Strikethrough, Super^script,inline code, Quoting)
- Linking
- Line Breaks & Paragraphs
- Lists
- Tables
- Block Code
- Headlines and Horizontals
####1. Basic Text Formatting
Italics are created using either a single asterisk (*) or single underscore (_).
Example:
This is *italic text*, this is also _italic text_.
becomes:
This is italic text, this is also italic text.
Bold text is created with double asterisks (**) or double underscores (__).
Example:
This is **bold text**, this is also __bold text__.
becomes:
This is bold text, this is also bold text.
Strikethrough text is created using a double tilde (
~~).Example:
This is
~~strikethrough text~~.becomes:
This is
strikethroughtext.Superscript text is created using the carot (
^).Example:
This sentence contains super
^script.becomes:
This sentence contains super^script.
Note that you cannot leave space before the carot, and there is no closing tag.
Superscript can also be stacked^like^this.
inline code (monospaced text) is created using the backtick (grave accents) (`).
Example:
This sentence contains inline code:
`javascript:alert("hello world");`becomes:
This sentence contains inline code:
javascript:alert("hello world");Quoting is achieved by starting a line with an Angle Bracket (>)
Example:
>Here's a quote.
>Another paragraph in the same quote.
>>A nested quote.>Back to a single quote.
And finally some unquoted text.
becomes:
Here's a quote.
Another paragraph in the same quote.
A nested quote.
Back to a single quote.
And finally some unquoted text.
To remove formatting you will need to use a Backslash (\)
Example:
This sentence escapes \*italic text\* and \*\*bold text\*\*.
becomes:
This sentence escapes *italic text* and **bold text**.
####2. Linking
Creating a link
Example:
[Reddit](
http://reddit.com)becomes:
You cannot begin a link with "www", it must begin with one of the following URL schemes:
- http://
- https://
- ftp://
- mailto:
- steam://
- irc://
- news://
- mumble://
- ssh://
You can also provide title text for links:
[Reddit](
http://reddit.com"what's new online!").becomes:
Reddit ← (hover!)
Title text can be used to hide spoilers:
[spoiler](/s"The spoiler text goes here")becomes:
[spoiler](/s"The spoiler text goes here") ← (hover!)
Reddit now recognises when you want to link to a subreddit.
Example:
This is a shameless plug for /r/BritishTV!
becomes:
This is a shameless plug for /r/BritishTV!
If a URL contains brackets you will need to escape these.
Example without escaping:
[Cube](http://en.wikipedia.org/wiki/Cube_(film))becomes:
Cube ← (note the surplus bracket!)
Example with escaping:
[Cube](http://en.wikipedia.org/wiki/Cube_(film\))becomes:
[Cube](http://en.wikipedia.org/wiki/Cube_(film\)) ← (no surplus bracket!)
####3. Line Breaks & Paragraphs
Line breaks in comments are achieved by adding four spaces (shown using ░) to the end of the line. Simply hitting return (shown using ↵) will not work.
Example:
First line↵
Second linebecomes:
First line Second line
but:
First line░░░░↵
Second linebecomes:
First line
Second lineParagraphs are formed when you hit return (shown using ↵) twice.
First Paragraph↵
↵
Second Paragraphbecomes:
First Paragraph
Second Paragraph
####4. Lists
To create Unordered Lists each item should begin with either an asterisk (*), plus sign (+) or minus sign (-).
Example:
* Item 1
+ Item 2
- Item 3becomes:
- Item 1
- Item 2
- Item 3
Ordered Lists are created with a number and period. It doesn't matter which number you start with, as markdown will always start with 1.
Example:
3. Item 1
2. Item 2
1. Item 3becomes:
- Item 1
- Item 2
- Item 3
The markup for Nested Lists has changed slightly:
Example:
1. This is Item 1
2.
░░░░1. This is Item 2.1
░░░░2. This is Item 2.2
3. This is Item 3
4. This is Item 4becomes:
- This is Item 1
-
- This is Item 2.1
- This is Item 2.2
- This is Item 3
- This is Item 4
Lists should be clear of any text in the line immediately above and below, the same as making a new paragraph:
This is the wrong way to make a list
- lorem
- ispum
reddit doesn't realize it should listify...
becomes:
This is the wrong way to make a list
- lorem
- ispum
reddit doesn't realize it should listify...
Place lists in their own paragraph:
This is the correct way to make a list
- lorem
- ispum
reddit realizes it should listify!
Paragraphs in Lists and Nested lists using a combination of ordered and unordered lists, are no longer supported.
####5. Tables
Tables are created using pipes (|):
Example
Left align | Center align | Right align
:--|:--:|--:
This | This | This
column | column | column
will | will | will
be | be | be
left | center | right
aligned | aligned | alignedbecomes:
Left align Center align Right align This This This column column column will will will be be be left center right aligned aligned aligned Note that by default the first row is always bolded.
Column Alignment is determined by the second row.
Use ":--:" for centre aligned text, "--:" for right, and ":--" for left.
You can also leave the top row empty, as long as you have the correct amount of pipes:
||
:--|:--:|--:
the|top|row
is|now|emptybecomes
| |
:--|:--:|--:
the|top|row
is|now|empty####6. Block code
Displaying block code, without formatting and in monospaced font, is as simple as starting the line with four spaces (shown using ░).
Example:
░░░░line of code
░░░░░░░░line of code
░░░░░░░░░░░░line of code
░░░░░░░░line of code
░░░░line of codebecomes:
line of code
line of code
line of code
line of code
line of code####7. Headlines & Horizonal Rules
Headline text can be created by using a number of hashes (#) corresponding to the tag you want. Headline tags will format all text until it encounters a Line Break or new Paragraph.
# Headline 1
## Headline 2
### Headline 3becomes:
#Headline 1
##Headline 2
###Headline 3NOTE: Markdown supports up to six headline tags, but only the first three have default formatting.To create a Horizontal Rule, simply add three asterisks (*) to an empty line.
***
becomes:
2 votes - Basic text formatting (Italics, Bold,
-
World's urban growth will surge most in India, China and Nigeria - UN
6 votes -
Sports - Tiny Planets (2016)
6 votes -
Edible history - What is Armenian food? Depends on who you ask
11 votes -
NASA satellites reveal major shifts in global freshwater
11 votes -
Great Lake Swimmers - Pulling On A Line (2009)
5 votes -
OneSpace launches China's first private rocket
4 votes -
In the lab with Xbox's new Adaptive Controller, which may change gaming forever
13 votes -
It's time! Come out and play. ;)
17 votes -
Community Resources?
One of the most useful things about most internet communities is being able to compile resources on a particular topic and act as a hub for getting into that topic. On Reddit, this is handled...
One of the most useful things about most internet communities is being able to compile resources on a particular topic and act as a hub for getting into that topic. On Reddit, this is handled through sidebars and wikis containing guides on how to start speedrunning, sewing, [ridiculous third example for humorous effect], etc. On imageboards, you have generals with pastebins and charts that each new version of that thread inherits. Traditional forums have a similar implementation, just slower.
Given that groups on Tildes are not user-managed and the Reddit-style posts don't encourage the kind of infinite repeating and bumping you see on imageboard generals, I don't see how this kind of thing can take root on the site. How is this going to be managed, if there are ideas on the way?
Of course, this is working from the assumption that this is something which the site should have. Personally, I see it as an essential measure for any site of this kind, but maybe yall don't agree.
7 votes -
Whole Foods starts discounts for Amazon Prime members — but only in Florida
5 votes -
Joanna Newsom - En Gallop (2004)
5 votes -
The entire economy is MoviePass now. Enjoy it while you can.
6 votes -
YouTube Music is Google's latest stab at a Spotify rival
8 votes -
Universal Hall Pass - Katrina Josephina
5 votes -
Introductions | May 2018, part 1
Hey I'm @vikinick. On Reddit I'm /u/vikinick and mod several subreddits. What about you guys?
73 votes -
Smokey 007 -- Help Me Make It Through The Night
4 votes -
Can the USA overtake China in the supercomputer race with her 200 petaflops Summit?
3 votes -
Golden State Warriors vs. Houston Rockets
Breaking Tilde 2.0
6 votes -
ZERO PUNCTUATION - Silent Hill 4
3 votes -
Las Vegas Golden Knights vs. Winnipeg Jets
Let's break tilde.
5 votes -
US Senate votes in favor of saving net neutrality
8 votes -
Big piece of pie: Domino's founder donates $3.5M to Winnipeg Children's Hospital
5 votes -
'I won't give up my name,' says local barber of demand from national chain
5 votes -
Truth and consequences: In complicated times, a case for more skepticism
6 votes -
Rare goose makes 6,000 mile trip from Russian Artic back to Arkansas
4 votes -
Mike Oldfield - Return to Ommadawn (2017)
5 votes -
Not Your Asian Sidekick ep 2 "AFWM/WMAF"
5 votes -
FiveThirthyEight 2020 Democratic primary way-too-early picks
5 votes -
'Double Trojan Horse' Drug Tricks Bacteria Into Committing Suicide
9 votes -
Trying to break the site with unicode characters
U+202E U+202E works in descriptions, but not titles apparently.
1 vote -
Lord of the Rings TV show may focus on young Aragorn
7 votes -
Inside the Hamptons house where Kevin Durant hosted NBA suitors in 2016
6 votes -
It’s not just Amazon: Apple quietly explores Northern Virginia campus for 20,000 jobs
5 votes -
Private equity’s plan to beat the low-cost investing robots
4 votes -
Tineidae - Rigel (2012)
7 votes -
Ecuador has grand plans to build out its bio-based economy
4 votes -
Daily Tildes discussion - go forth and multiply
Alright, not so much a particular "discussion" today, but there are already a couple of other good ones going on in ~tildes as well. As I'm sure many of you have noticed, I've started actively...
Alright, not so much a particular "discussion" today, but there are already a couple of other good ones going on in ~tildes as well.
As I'm sure many of you have noticed, I've started actively promoting the site around some reddit places today, and I'm sure it'll probably spread some more from there too. In support of that, I've given all the current users 5 invite codes that you can give to others if you'd like to invite anyone. You can get to these on the invite page, which is linked from the sidebar on your user page.
Also, in case you missed it, I fixed the invite process the other day so that you can have multiple active codes now, so you don't still need to invite only one person at a time.
As always, let me know if you need more invite codes or have a particular suggestion for ways you'd like to invite more people. Hopefully we can keep some momentum going for a bit now and get the activity to a self-sustaining level.
16 votes -
Link to userpage should be more obvious
Currently, it's just sitting in the top right corner. Considering the fact that it's hiding useful settings (like dark modes!) behind it, it should be a bit more obvious that it's a button,...
Currently, it's just sitting in the top right corner. Considering the fact that it's hiding useful settings (like dark modes!) behind it, it should be a bit more obvious that it's a button, especially on mobile.
5 votes -
Jay Mitchell - Funky Fever (1975)
4 votes -
PokemonLetsGoPikachu.com and PokemonLetsGoEevee.com have now been registered via CSC Digital Brand Services. This is the company TPCI and Nintendo use to protect brand domains.
@pixelpar: https://t.co/via68ewCUS and https://t.co/336Zq2kS8S have now been registered via CSC Digital Brand Services. This is the company TPCI and Nintendo use to protect brand domains. Both point to the same Namedserver and contain a blank favicon. Credit to @Pokekalos for finding them
8 votes