krz/php-blog

A PHP blogging system with built-in static comments.

clone: git clone https://gitbay.org/krz/php-blog.git

main: posts/002-example-syntax.md · raw

 1## Syntax Possiblities
 2
 3Please see the [GitHub Flavored Markdown specs](https://github.github.com/gfm/) and
 4the [parsedown](https://github.com/erusev/parsedown) repository for more specific details on Markdown possiblities.
 5
 6---
 7
 8Headings:
 9
10# Heading - Level 1
11
12## Heading - Level 2
13
14### Heading - Level 3
15
16#### Heading - Level 4
17
18##### Heading - Level 5
19
20###### Heading - Level 6
21
22---
23
24Formatted Text:
25
26**Bold text**  
27*Italics*  
28~~strikethrough~~  
29[a simple link](https://example.com)
30
31---
32
33Blockquotes:
34
35> # Foo
36> bar
37> baz
38
39---
40
41Lists:
42
431. one
442. two
453. three
46    1. sub-bullet
47
48- unordered one
49- unordered two
50
51---
52
53Code Blocks:
54
55```html
56<!doctype html>
57<html lang="en">
58<head>
59    <meta charset="utf-8">
60    <meta name="viewport" content="width=device-width, initial-scale=1">
61    <title>Hello, world!</title>
62</head>
63<body>
64<h1>Hello, world!</h1>
65</body>
66</html>
67```
68
69---
70
71Tables:
72
73| foo | bar |
74| --- | --- |
75| baz | bim |
76
77---