QNA > C > Come Formattare Il Testo (Rendere Il Testo In Grassetto, Corsivo, Sottolineato, Ecc.) Sui Post Di Reddit

Come formattare il testo (rendere il testo in grassetto, corsivo, sottolineato, ecc.) sui post di Reddit

r/reddit.com - Reddit markdown primer. O, comunque, come fai a fare tutta quella formattazione di fantasia nei tuoi commenti? è la migliore risorsa per questo.

(Tutto il testo qui sotto è tratto dal link - non è stato bloccato in virgolette poiché le virgolette sono usate come esempi nel testo detto.)

FONT FORMATTING

Italic

Il testo può essere visualizzato in un carattere corsivo circondando una o più parole con singoli asterischi (*) o singoli underscore (_).

Per esempio:

Questa frase include *testo corsivo*.

viene visualizzato come:

Questa frase include testo in corsivo.

Gold

Il testo può essere visualizzato in grassetto circondando una o più parole con doppio asterisco (*) o doppio underscore (_).

For example:

This sentence includes **bold text**.

is displayed as:

This sentence includes bold text.

Strikethrough

Text can be displayed in a strikethrough font by surrounding a word or words with double tildes (~~). For example:

This sentence includes ~ ~strikethrough text~ ~

(but with no spaces between the tildes; escape sequences [see far below] appear not to work with tildes, so I can't demonstrate the exact usage).

is displayed as:

This sentence includes s̶t̶r̶i̶k̶e̶t̶h̶r̶o̶u̶g̶h̶ ̶t̶e̶x̶t̶

Superscript

Text can be displayed in a superscript font by preceding it with a caret ( ^ ).

This sentence includes super^ script

(but with no spaces after the caret; Like strikethrough, the superscript syntax doesn't play nicely with escape sequences).

is displayed as:

This sentence includes [math]super^{script}[/math].

Superscripts can even be nested: [math]just^{like}^{this}[/math]

Tuttavia, notate che il carattere dell'apice sarà azzerato da uno spazio. Per ovviare a questo, potete racchiudere il testo nell'apice con delle parentesi. Le parentesi non saranno visualizzate nel commento, e tutto ciò che si trova al loro interno sarà in apice, indipendentemente dagli spazi:

Questa frase^ (ha un apice con più parole)

Di nuovo, senza spazio dopo il trattino.

viene visualizzato come

Questa [math]frase^{ha un apice con più parole}[/math]

Headers

Markdown supporta 6 livelli di headers (alcuni dei quali non vengono effettivamente visualizzati come headers in reddit):

main-qimg-e7e0d4b1cf3b15aef86d100fb75ad38a

...che possono essere creati in un paio di modi diversi. Le intestazioni di livello 1 e 2 possono essere create aggiungendo una linea di segni uguali (=) o trattini (-), rispettivamente, sotto il testo dell'intestazione.

Tuttavia, tutti i tipi di intestazione possono essere creati con un secondo metodo. Simply prepend a number of hashes (#) corresponding to the header level you want, so:

# Header 1

## Header 2

### Header 3

#### Header 4

##### Header 5

###### Header 6

results in:

main-qimg-55ee0e68c13be0756b1a799748081575

Note: you can add hashes after the header text to balance out how the source code looks without affecting what is displayed. So:

## Header 2 ##

also produces:

Header 2

LISTS

Markdown supports two types of lists: ordered and unordered.

Unordered Lists

Prepend each element in the list with either a plus (+), dash (-), or asterisk (*) plus a space. Line openers can be mixed. So

* Item 1

+ Item 2

- Item 3

results in

  • Item 1
  • Item 2
  • Item 3

Ordered Lists

Ordered lists work roughly the same way, but you prepend each item in the list with a number plus a period (.) plus a space. Inoltre, non fa differenza quali numeri usi. La lista ordinata inizierà sempre con il numero 1, e aumenterà sempre in modo sequenziale. Quindi

7. Voce 1

2. Voce 2

5. Elemento 3

risulta in

7. Elemento 1 2. Voce 2 5. Voce 3

main-qimg-181c8f1f56e5cd46be11b925ebd1b11c

CODE BLOCKS E CODICE INLINE

Il codice inline è facile. Circonda semplicemente qualsiasi testo con i trattini (`), da non confondere con gli apostrofi ('). Tutto ciò che è compreso tra i backtick sarà reso in un font a larghezza fissa, e nessuna delle sintassi di formattazione che stiamo esplorando sarà applicata. Quindi

Qui c'è del `codice in linea con **formattazione**`

viene visualizzato come:

Qui c'è del codice in linea con **formattazione**

Nota che questo è il motivo per cui dovresti usare il normale apostrofo quando scrivi nomi possessivi o contrazioni. Altrimenti potreste ritrovarvi con qualcosa come:

Non potevo credere che non lo sapesse!

A volte avete anche bisogno di preservare l'indentazione. In those cases, you can create a block code element by starting every line of your code with four spaces (followed by other spaces that will be preserved). You can get results like the following:

  1. public void main(Strings argv[]){ 
  2. System.out.println("Hello world!"); 

LINKS

There are a couple of ways to get HTML links. The easiest is to just paste a valid URL, which will be automatically parsed as a link. Like so:

http://en.wikipedia.org

However, usually you'll want to have text that functions as a link. In that case, include the text inside of square brackets followed by the URL in parentheses. So:

[Wikipedia](http://en.wikipedia.org).

results in:

Wikipedia.

You can also provide tooltip text for links like so:

[Wikipedia](http://en.wikipedia.org "tooltip text").

results in:

Wikipedia.

There are other methods of generating links that aren't appropriate for discussion-board style comments. See the Markdown Syntax if you're interested in more info.

BLOCK QUOTES

You'll probably do a lot of quoting of other redditors. In those cases, you'll want to use block quotes. Simple begin each line you want quoted with a right angle bracket (>). Multiple angle brackets can be used for nested quotes. To cause a new paragraph to be quoted, begin that paragraph with another angle bracket. So the following:

  1. >Here's a quote. 
  2.  
  3. >Another paragraph in the same quote. 
  4. >>A nested quote. 
  5.  
  6. >Back to a single quote. 
  7.  
  8. And finally some unquoted text. 

Is displayed as:

Here's a quote.

Another paragraph in the same quote.

A nested quote.

Back to a single quote.

And finally some unquoted text.

MISCELLANEOUS

main-qimg-36090eb8094eb5bd0ce50dbb18d2c093

Tutto ciò che serve per produrre una tabella è una riga di intestazioni separate da "tubi" (|), una riga che indica come giustificare le colonne, e 1 o più righe di dati (di nuovo, separate da tubi).

L'unica vera "magia" è nella riga tra le intestazioni e i dati. Dovrebbe idealmente essere formata da righe tratteggiate separate da pipe. Se aggiungi un due punti a sinistra dei trattini per una colonna, quella colonna sarà giustificata a sinistra. A destra per la giustificazione a destra, e su entrambi i lati per i dati centrati. Se non ci sono due punti, la colonna sarà giustificata a sinistra per default.

Qualsiasi numero di trattini va bene, anche uno solo. Puoi anche non usarne affatto se vuoi che il sistema sia giustificato a sinistra, ma è più facile vedere cosa stai facendo se ne metti qualcuno.

Nota anche che i tubi (che indicano la linea di divisione tra le celle) non devono essere allineati. You just need the same number of them in every row.

Escaping special characters

If you need to display any of the special characters, you can escape that character with a backslash (\). For example:

Escaped \*italics\*

results in:

Escaped *italics*

Horizontal rules

Finally, to create a horizontal rule, create a separate paragraph with 5 or more asterisks (*).

Di Norford Dodds

Myflixer è sicuro per guardare film e spettacoli televisivi? :: Come scrivere in grassetto su Twitter
Link utili