diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-03 03:53:28 -0700 |
---|---|---|
committer | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-03 04:05:40 -0700 |
commit | 365200ce0aa1ee13fe48ef939b9bfc1da136044d (patch) | |
tree | 44448de15e31398f972b0943e39b9e86f72149c8 /it-it | |
parent | 1708b6c95cb7653098c44097e05a35ab8c6813f3 (diff) |
Fix syntax highlighting for Markdown
Diffstat (limited to 'it-it')
-rw-r--r-- | it-it/markdown.html.markdown | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/it-it/markdown.html.markdown b/it-it/markdown.html.markdown index c14bc175..ff6f0aed 100644 --- a/it-it/markdown.html.markdown +++ b/it-it/markdown.html.markdown @@ -183,7 +183,7 @@ Potete inoltre inserire un altro tab (o altri quattro spazi) per indentare il vo ```md my_array.each do |item| - puts item + puts item end ``` @@ -194,12 +194,15 @@ Giovanni non sapeva neppure a cosa servisse la funzione `go_to()`! ``` In Github Flavored Markdown, potete inoltre usare una sintassi speciale per il codice -<pre> -<code class="highlight">```ruby + +````md +```ruby def foobar - puts "Hello world!" + puts "Hello world!" end -```</code></pre> +``` +```` + Se usate questa sintassi, il testo non richiederĂ di essere indentato, inoltre Github userĂ l'evidenziazione della sintassi del linguaggio specificato dopo i \`\`\` iniziali ## Linea orizzontale |