Back to blog

Markdown Syntax Guide

Sample article showcasing basic Markdown syntax and formatting for HTML elements.

 Markdown Syntax Guide

Acest articol oferă un exemplu de sintaxă Markdown de bază care poate fi utilizată în fișierele de conținut Hugo și arată dacă elementele de bază HTML sunt decorate cu CSS într-un tema Hugo.

Titluri

Următoarele elemente HTML <h1><h6> reprezintă șase niveluri de titluri de secțiuni. <h1> este cel mai înalt nivel de secțiune, în timp ce <h6> este cel mai scăzut.

H1

H2

H3

H4

H5
H6

Paragraf

Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.

Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.

Imagini

Surfverse Theme V1

Citate

The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a footer or cite element, and optionally with in-line changes such as annotations and abbreviations.

Citat fără atribuire

Tiam, ad mint andaepu dandae nostion secatur sequo quae. Note that you can use Markdown syntax within a blockquote.

Citate fără atribuire

Don’t communicate by sharing memory, share memory by communicating.
Rob Pike1

Tabele

Tabelele nu fac parte din specificația de bază Markdown, dar Hugo le susține implicit.

Name Age
Bob 27
Alice 23

Markdown în linie în tabele

Italics Bold Code
italics bold code

Blocuri de cod

Bloc de cod cu ghilimele inverse

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Example HTML5 Document</title>
</head>
<body>
  <p>Test</p>
</body>
</html>

Bloc de cod indentat cu patru spații

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Example HTML5 Document</title>
</head>
<body>
  <p>Test</p>
</body>
</html>

Bloc de cod cu shortcode-ul intern de evidențiere Hugo

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Example HTML5 Document</title>
</head>
<body>
  <p>Test</p>
</body>
</html>

Bloc de cod cu shortcode-ul intern de evidențiere Hugo

# Python 3: Fibonacci series up to n
def fib(n):
    a, b = 0, 1
    while a < n:
        print(a, end=' ')
        a, b = b, a+b
    print()
fib(1000)

Highlighting in code fences is enabled by default.

# code
from django.shortcuts import render
from surfverse_project.apps.jobs.models import Job
# Create your views here.


def jobs(request):
    jobs = Job.objects.all()

    context = {
        'title': 'Jobs',
        'jobs': jobs
    }
    return render(request, 'jobs/base.html', context)

Tipuri de liste

Listă ordonată

  1. First item
  2. Second item
  3. Third item

Listă neordonată

  • List item
  • Another item
  • And another item

Listă imbricată

  • Fruct
    • Măr
    • Portocală
    • Banană
  • Produse lactate
    • Lapte
    • Brânză

Alte Elemente — abbr, sub, sup, kbd, mark

GIF este un format de imagine bitmap.

H2O

Xn + Yn = Zn

Apasă CTRL + ALT + Delete pentru a încheia sesiunea.

Majoritatea salamandrelor sunt nocturne și vânează insecte, viermi și alte creaturi mici.


  1. The above quote is excerpted from Rob Pike’s talk during Gopherfest, November 18, 2015. ↩︎

. Markdown Syntax Guide →

Sample article showcasing basic Markdown syntax and formatting for HTML elements.

← . Timpul de citit

Trebuie sa afiseze 117 minute de citit

comments powered by Disqus

🍪 Consimțământ cookie-uri

Acest site utilizează cookie-uri pentru a analiza traficul, a vă păstra preferințele și a vă optimiza experiența. Folosind acest site, sunteți de acord cu politica noastră privind cookie-urile.Privacy Policy