├── .gitignore
├── .prettierignore
├── rl.md
├── supported_file_extensions
├── todo.txt
├── documentation.md
├── documentation.markdown
├── pie_chart.mmd
├── pie_chart.mermaid
├── ruby.gif
├── BinaryTree.jpg
├── BinaryTree.png
├── fictional_park.json
├── fictional_park.geojson
├── fictional_park.topojson
├── theultimatemarkdowncheatsheet-brightgreen.svg
├── md.svg
├── solid_cube.stl
└── README.md
├── .vscode
└── settings.json
├── .github
├── workflows
│ └── readme-checker.yml
├── pull_request_template.md
└── ISSUE_TEMPLATE
│ ├── feature_request.md
│ └── bug_report.md
├── .markdownlint.json
├── LICENSE
├── CONTRIBUTING.md
├── MathJax.md
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | *.md
--------------------------------------------------------------------------------
/rl.md:
--------------------------------------------------------------------------------
1 | # Example of a relative link
2 |
--------------------------------------------------------------------------------
/supported_file_extensions/todo.txt:
--------------------------------------------------------------------------------
1 | [x] Task 1
2 | [] Task 2
--------------------------------------------------------------------------------
/supported_file_extensions/documentation.md:
--------------------------------------------------------------------------------
1 | # Documentation
2 |
--------------------------------------------------------------------------------
/supported_file_extensions/documentation.markdown:
--------------------------------------------------------------------------------
1 | # Documentation
2 |
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "files.trimTrailingWhitespace": true
3 | }
4 |
--------------------------------------------------------------------------------
/supported_file_extensions/pie_chart.mmd:
--------------------------------------------------------------------------------
1 | pie
2 | "Movies" : 80
3 | "TV shows" : 20
4 |
--------------------------------------------------------------------------------
/supported_file_extensions/pie_chart.mermaid:
--------------------------------------------------------------------------------
1 | pie
2 | "Movies" : 80
3 | "TV shows" : 20
4 |
--------------------------------------------------------------------------------
/supported_file_extensions/ruby.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lifeparticle/Markdown-Cheatsheet/HEAD/supported_file_extensions/ruby.gif
--------------------------------------------------------------------------------
/supported_file_extensions/BinaryTree.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lifeparticle/Markdown-Cheatsheet/HEAD/supported_file_extensions/BinaryTree.jpg
--------------------------------------------------------------------------------
/supported_file_extensions/BinaryTree.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lifeparticle/Markdown-Cheatsheet/HEAD/supported_file_extensions/BinaryTree.png
--------------------------------------------------------------------------------
/.github/workflows/readme-checker.yml:
--------------------------------------------------------------------------------
1 | on: [push, pull_request]
2 |
3 | jobs:
4 | lint:
5 | runs-on: ubuntu-latest
6 | steps:
7 | - uses: actions/checkout@v3
8 | - uses: DavidAnson/markdownlint-cli2-action@v11
9 | with:
10 | config: "./.markdownlint.json"
11 | globs: |
12 | *.md
13 | !test/*.md
14 |
--------------------------------------------------------------------------------
/.github/pull_request_template.md:
--------------------------------------------------------------------------------
1 | # Pull Request Overview
2 |
3 | Please provide a brief summary of the changes made in this pull request.
4 | This helps reviewers understand the context and intent of your changes.
5 |
6 | ## Changes Introduced
7 |
8 | List specific changes made (e.g., added new or refactored existing syntax).
9 | Include reasons for complex or significant changes
10 |
11 | ## Linked Issue(s)
12 |
13 | - [ ] Link to the issue ticket(s) this PR addresses (e.g., `Fixes #123`)
14 |
15 | ## Additional Notes
16 |
17 | - [ ] Add any other context or notes about the pull request here (optional)
18 |
--------------------------------------------------------------------------------
/supported_file_extensions/fictional_park.json:
--------------------------------------------------------------------------------
1 | {
2 | "type": "FeatureCollection",
3 | "features": [
4 | {
5 | "type": "Feature",
6 | "geometry": {
7 | "type": "Polygon",
8 | "coordinates": [
9 | [
10 | [-100.0, 40.0],
11 | [-99.0, 40.0],
12 | [-99.0, 41.0],
13 | [-100.0, 41.0],
14 | [-100.0, 40.0]
15 | ]
16 | ]
17 | },
18 | "properties": {
19 | "name": "Fictional Park",
20 | "description": "A large, fictional park for demonstration purposes."
21 | }
22 | }
23 | ]
24 | }
25 |
--------------------------------------------------------------------------------
/.markdownlint.json:
--------------------------------------------------------------------------------
1 | {
2 | "MD013": {
3 | "line_length": 409,
4 | "code_blocks": false,
5 | "tables": false
6 | },
7 | "MD033": {
8 | "allowed_elements": [
9 | "h1",
10 | "h2",
11 | "h3",
12 | "h4",
13 | "h5",
14 | "h6",
15 | "a",
16 | "br",
17 | "kbd",
18 | "strong",
19 | "em",
20 | "blockquote",
21 | "samp",
22 | "strike",
23 | "ins",
24 | "table",
25 | "tr",
26 | "th",
27 | "td",
28 | "sub",
29 | "sup",
30 | "p",
31 | "img",
32 | "pre",
33 | "picture",
34 | "source",
35 | "ul",
36 | "li",
37 | "details",
38 | "summary",
39 | "div"
40 | ]
41 | },
42 | "MD034": false
43 | }
44 |
--------------------------------------------------------------------------------
/supported_file_extensions/fictional_park.geojson:
--------------------------------------------------------------------------------
1 | {
2 | "type": "FeatureCollection",
3 | "features": [
4 | {
5 | "type": "Feature",
6 | "geometry": {
7 | "type": "Polygon",
8 | "coordinates": [
9 | [
10 | [-100.0, 40.0],
11 | [-99.0, 40.0],
12 | [-99.0, 41.0],
13 | [-100.0, 41.0],
14 | [-100.0, 40.0]
15 | ]
16 | ]
17 | },
18 | "properties": {
19 | "name": "Fictional Park",
20 | "description": "A large, fictional park for demonstration purposes."
21 | }
22 | }
23 | ]
24 | }
25 |
--------------------------------------------------------------------------------
/supported_file_extensions/fictional_park.topojson:
--------------------------------------------------------------------------------
1 | {
2 | "type": "Topology",
3 | "objects": {
4 | "fictional_park": {
5 | "type": "GeometryCollection",
6 | "geometries": [
7 | {
8 | "type": "Polygon",
9 | "arcs": [[0]],
10 | "properties": {
11 | "name": "Fictional Park",
12 | "description": "A large, fictional park for demonstration purposes."
13 | }
14 | }
15 | ]
16 | }
17 | },
18 | "arcs": [
19 | [[-100, 40], [-99, 40], [-99, 41], [-100, 41], [-100, 40]]
20 | ],
21 | "transform": {
22 | "scale": [0.0001, 0.0001],
23 | "translate": [-100, 40]
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Feature request
3 | about: Suggest an idea for this project
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Is your feature request related to a problem? Please describe.**
11 | A clear and concise description of what the problem is. Ex. I'm always
12 | frustrated when [...]
13 |
14 | **Describe the solution you'd like**
15 | A clear and concise description of what you want to happen.
16 |
17 | **Describe alternatives you've considered**
18 | A clear and concise description of any alternative solutions or features you've
19 | considered.
20 |
21 | **Additional context**
22 | Add any other context or screenshots about the feature request here.
23 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.md:
--------------------------------------------------------------------------------
1 | ---
2 | name: Bug report
3 | about: Create a report to help us improve
4 | title: ''
5 | labels: ''
6 | assignees: ''
7 |
8 | ---
9 |
10 | **Describe the bug**
11 | A clear and concise description of what the bug is.
12 |
13 | **To Reproduce**
14 | Steps to reproduce the behavior:
15 |
16 | 1. Go to '...'
17 | 2. Click on '....'
18 | 3. Scroll down to '....'
19 | 4. See error
20 |
21 | **Expected behavior**
22 | A clear and concise description of what you expected to happen.
23 |
24 | **Screenshots**
25 | If applicable, add screenshots to help explain your problem.
26 |
27 | **Desktop (please complete the following information):**
28 |
29 | - OS: [e.g. iOS]
30 | - Browser [e.g. chrome, safari]
31 | - Version [e.g. 22]
32 |
33 | **Smartphone (please complete the following information):**
34 |
35 | - Device: [e.g. iPhone6]
36 | - OS: [e.g. iOS8.1]
37 | - Browser [e.g. stock browser, safari]
38 | - Version [e.g. 22]
39 |
40 | **Additional context**
41 | Add any other context about the problem here.
42 |
--------------------------------------------------------------------------------
/supported_file_extensions/theultimatemarkdowncheatsheet-brightgreen.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2021 Mahbub Zaman
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/supported_file_extensions/md.svg:
--------------------------------------------------------------------------------
1 |
44 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contribution Guidelines
2 |
3 | 1. Fork the repo
4 | 2. Clone your fork
5 | 3. Sync your local master
6 |
7 | 3.1.
8 |
9 | ```bash
10 | git remote add upstream git@github.com:lifeparticle/Markdown-Cheatsheet.git
11 | ```
12 |
13 | 3.2.
14 |
15 | ```bash
16 | git fetch upstream
17 | ```
18 |
19 | 3.3.
20 |
21 | ```bash
22 | git branch --set-upstream-to=upstream/main main
23 | ```
24 |
25 | 3.4.
26 |
27 | ```bash
28 | git pull
29 | ```
30 |
31 | 4. Create a branch
32 |
33 | ```bash
34 | git branch issue-2 # use issue_number, replace issue-2 with appropriate branch name
35 | git checkout issue-2
36 | ```
37 |
38 | 5. Run lint
39 |
40 | ```shell
41 | markdownlint-cli2 "**/*.md" --config ./.markdownlint.json
42 | ```
43 |
44 | 6. Push your changes to your fork with git push
45 |
46 | ```bash
47 | git add .
48 | git commit -m"Write a meaningfull commit message"
49 | git push
50 | ```
51 |
52 | 7. Create a pull request
53 |
54 | 7.1 Use the url from the terminal
55 |
56 | ```bash
57 | remote: Create a pull request for 'issue-2' on GitHub by visiting:
58 | remote: https://github.com/........................
59 | ```
60 |
61 | 7.2 If you're haveing problem finding the url
62 |
63 | a) [Markdown-Cheatsheet Pull requests](https://github.com/lifeparticle/Markdown-Cheatsheet/pulls)
64 |
65 | b) Click the button 'New pull request'
66 |
67 | c) Click the link 'compare acorss forks'
68 |
69 | d) Change head repository to your fork
70 |
71 | e) Change the branch to your branch
72 |
73 | f) Create pull request
74 |
75 | 8. Repeat
76 |
77 | ```bash
78 | git checkout master
79 | git pull
80 | ```
81 |
--------------------------------------------------------------------------------
/supported_file_extensions/solid_cube.stl:
--------------------------------------------------------------------------------
1 | solid cube
2 | facet normal 0 0 0
3 | outer loop
4 | vertex 0 0 0
5 | vertex 1 0 0
6 | vertex 1 1 0
7 | endloop
8 | endfacet
9 | facet normal 0 0 0
10 | outer loop
11 | vertex 0 0 0
12 | vertex 1 1 0
13 | vertex 0 1 0
14 | endloop
15 | endfacet
16 | facet normal 0 0 0
17 | outer loop
18 | vertex 0 0 1
19 | vertex 1 0 1
20 | vertex 1 1 1
21 | endloop
22 | endfacet
23 | facet normal 0 0 0
24 | outer loop
25 | vertex 0 0 1
26 | vertex 1 1 1
27 | vertex 0 1 1
28 | endloop
29 | endfacet
30 | facet normal 0 0 0
31 | outer loop
32 | vertex 0 0 0
33 | vertex 0 1 0
34 | vertex 0 1 1
35 | endloop
36 | endfacet
37 | facet normal 0 0 0
38 | outer loop
39 | vertex 0 0 0
40 | vertex 0 1 1
41 | vertex 0 0 1
42 | endloop
43 | endfacet
44 | facet normal 0 0 0
45 | outer loop
46 | vertex 1 0 0
47 | vertex 1 1 0
48 | vertex 1 1 1
49 | endloop
50 | endfacet
51 | facet normal 0 0 0
52 | outer loop
53 | vertex 1 0 0
54 | vertex 1 1 1
55 | vertex 1 0 1
56 | endloop
57 | endfacet
58 | facet normal 0 0 0
59 | outer loop
60 | vertex 0 0 0
61 | vertex 0 0 1
62 | vertex 1 0 1
63 | endloop
64 | endfacet
65 | facet normal 0 0 0
66 | outer loop
67 | vertex 0 0 0
68 | vertex 1 0 1
69 | vertex 1 0 0
70 | endloop
71 | endfacet
72 | facet normal 0 0 0
73 | outer loop
74 | vertex 0 1 0
75 | vertex 0 1 1
76 | vertex 1 1 1
77 | endloop
78 | endfacet
79 | facet normal 0 0 0
80 | outer loop
81 | vertex 0 1 0
82 | vertex 1 1 1
83 | vertex 1 1 0
84 | endloop
85 | endfacet
86 | endsolid cube
87 |
--------------------------------------------------------------------------------
/supported_file_extensions/README.md:
--------------------------------------------------------------------------------
1 | # Supported file extensions
2 |
3 | | Content Type | Supported Extensions | Description |
4 | |--------------|----------------------------------------------------------------------------|-------------------------------------------|
5 | | mermaid | [.mermaid](./pie_chart.mermaid), [.mmd](./pie_chart.mmd) | Diagramming and charting tool |
6 | | geoJSON | [.geojson](./fictional_park.geojson), [.json](./fictional_park.json) | Format for encoding geographic data |
7 | | topoJSON | [.topojson](./fictional_park.topojson), .json | Extension of GeoJSON for topology data |
8 | | STL | [.stl](./solid_cube.stl) | File format for 3D models |
9 | | Markdown | [.markdown](./documentation.markdown), [.md](./documentation.md) | Markup language for formatting text |
10 | | SVG | [.svg](./theultimatemarkdowncheatsheet-brightgreen.svg), [.svg](./md.svg) | Scalable Vector Graphics file format |
11 | | PNG | [.png](./BinaryTree.png) | Portable Network Graphics file format |
12 | | GIF | [.gif](./ruby.gif) | Graphics Interchange Format file |
13 | | JPEG | [.jpg](./BinaryTree.jpg), .jpeg | JPEG image file format |
14 | | Text | [.txt](./todo.txt) | Plain text file |
15 |
16 | ## mermaid
17 |
18 | ```mermaid
19 | pie
20 | "Movies" : 80
21 | "TV shows" : 20
22 | ```
23 |
24 | ````md
25 | ```mermaid
26 | pie
27 | "Movies" : 80
28 | "TV shows" : 20
29 | ```
30 | ````
31 |
32 | ## geoJSON
33 |
34 | ```geojson
35 | {
36 | "type": "FeatureCollection",
37 | "features": [
38 | {
39 | "type": "Feature",
40 | "geometry": {
41 | "type": "Polygon",
42 | "coordinates": [
43 | [
44 | [-100.0, 40.0],
45 | [-99.0, 40.0],
46 | [-99.0, 41.0],
47 | [-100.0, 41.0],
48 | [-100.0, 40.0]
49 | ]
50 | ]
51 | },
52 | "properties": {
53 | "name": "Fictional Park",
54 | "description": "A large, fictional park for demonstration purposes."
55 | }
56 | }
57 | ]
58 | }
59 | ```
60 |
61 | ````md
62 | ```geojson
63 | {
64 | "type": "FeatureCollection",
65 | "features": [
66 | {
67 | "type": "Feature",
68 | "geometry": {
69 | "type": "Polygon",
70 | "coordinates": [
71 | [
72 | [-100.0, 40.0],
73 | [-99.0, 40.0],
74 | [-99.0, 41.0],
75 | [-100.0, 41.0],
76 | [-100.0, 40.0]
77 | ]
78 | ]
79 | },
80 | "properties": {
81 | "name": "Fictional Park",
82 | "description": "A large, fictional park for demonstration purposes."
83 | }
84 | }
85 | ]
86 | }
87 | ```
88 | ````
89 |
90 | ## topoJSON
91 |
92 | ```topojson
93 | {
94 | "type": "Topology",
95 | "objects": {
96 | "fictional_park": {
97 | "type": "GeometryCollection",
98 | "geometries": [
99 | {
100 | "type": "Polygon",
101 | "arcs": [[0]],
102 | "properties": {
103 | "name": "Fictional Park",
104 | "description": "A large, fictional park for demonstration purposes."
105 | }
106 | }
107 | ]
108 | }
109 | },
110 | "arcs": [
111 | [[-100, 40], [-99, 40], [-99, 41], [-100, 41], [-100, 40]]
112 | ],
113 | "transform": {
114 | "scale": [0.0001, 0.0001],
115 | "translate": [-100, 40]
116 | }
117 | }
118 | ```
119 |
120 | ````md
121 | ```topojson
122 | {
123 | "type": "Topology",
124 | "objects": {
125 | "fictional_park": {
126 | "type": "GeometryCollection",
127 | "geometries": [
128 | {
129 | "type": "Polygon",
130 | "arcs": [[0]],
131 | "properties": {
132 | "name": "Fictional Park",
133 | "description": "A large, fictional park for demonstration purposes."
134 | }
135 | }
136 | ]
137 | }
138 | },
139 | "arcs": [
140 | [[-100, 40], [-99, 40], [-99, 41], [-100, 41], [-100, 40]]
141 | ],
142 | "transform": {
143 | "scale": [0.0001, 0.0001],
144 | "translate": [-100, 40]
145 | }
146 | }
147 | ```
148 | ````
149 |
150 | ## STL
151 |
152 | ```stl
153 | solid cube
154 | facet normal 0 0 0
155 | outer loop
156 | vertex 0 0 0
157 | vertex 1 0 0
158 | vertex 1 1 0
159 | endloop
160 | endfacet
161 | facet normal 0 0 0
162 | outer loop
163 | vertex 0 0 0
164 | vertex 1 1 0
165 | vertex 0 1 0
166 | endloop
167 | endfacet
168 | facet normal 0 0 0
169 | outer loop
170 | vertex 0 0 1
171 | vertex 1 0 1
172 | vertex 1 1 1
173 | endloop
174 | endfacet
175 | facet normal 0 0 0
176 | outer loop
177 | vertex 0 0 1
178 | vertex 1 1 1
179 | vertex 0 1 1
180 | endloop
181 | endfacet
182 | facet normal 0 0 0
183 | outer loop
184 | vertex 0 0 0
185 | vertex 0 1 0
186 | vertex 0 1 1
187 | endloop
188 | endfacet
189 | facet normal 0 0 0
190 | outer loop
191 | vertex 0 0 0
192 | vertex 0 1 1
193 | vertex 0 0 1
194 | endloop
195 | endfacet
196 | facet normal 0 0 0
197 | outer loop
198 | vertex 1 0 0
199 | vertex 1 1 0
200 | vertex 1 1 1
201 | endloop
202 | endfacet
203 | facet normal 0 0 0
204 | outer loop
205 | vertex 1 0 0
206 | vertex 1 1 1
207 | vertex 1 0 1
208 | endloop
209 | endfacet
210 | facet normal 0 0 0
211 | outer loop
212 | vertex 0 0 0
213 | vertex 0 0 1
214 | vertex 1 0 1
215 | endloop
216 | endfacet
217 | facet normal 0 0 0
218 | outer loop
219 | vertex 0 0 0
220 | vertex 1 0 1
221 | vertex 1 0 0
222 | endloop
223 | endfacet
224 | facet normal 0 0 0
225 | outer loop
226 | vertex 0 1 0
227 | vertex 0 1 1
228 | vertex 1 1 1
229 | endloop
230 | endfacet
231 | facet normal 0 0 0
232 | outer loop
233 | vertex 0 1 0
234 | vertex 1 1 1
235 | vertex 1 1 0
236 | endloop
237 | endfacet
238 | endsolid cube
239 | ```
240 |
241 | ````md
242 | ```stl
243 | solid cube
244 | facet normal 0 0 0
245 | outer loop
246 | vertex 0 0 0
247 | vertex 1 0 0
248 | vertex 1 1 0
249 | endloop
250 | endfacet
251 | facet normal 0 0 0
252 | outer loop
253 | vertex 0 0 0
254 | vertex 1 1 0
255 | vertex 0 1 0
256 | endloop
257 | endfacet
258 | facet normal 0 0 0
259 | outer loop
260 | vertex 0 0 1
261 | vertex 1 0 1
262 | vertex 1 1 1
263 | endloop
264 | endfacet
265 | facet normal 0 0 0
266 | outer loop
267 | vertex 0 0 1
268 | vertex 1 1 1
269 | vertex 0 1 1
270 | endloop
271 | endfacet
272 | facet normal 0 0 0
273 | outer loop
274 | vertex 0 0 0
275 | vertex 0 1 0
276 | vertex 0 1 1
277 | endloop
278 | endfacet
279 | facet normal 0 0 0
280 | outer loop
281 | vertex 0 0 0
282 | vertex 0 1 1
283 | vertex 0 0 1
284 | endloop
285 | endfacet
286 | facet normal 0 0 0
287 | outer loop
288 | vertex 1 0 0
289 | vertex 1 1 0
290 | vertex 1 1 1
291 | endloop
292 | endfacet
293 | facet normal 0 0 0
294 | outer loop
295 | vertex 1 0 0
296 | vertex 1 1 1
297 | vertex 1 0 1
298 | endloop
299 | endfacet
300 | facet normal 0 0 0
301 | outer loop
302 | vertex 0 0 0
303 | vertex 0 0 1
304 | vertex 1 0 1
305 | endloop
306 | endfacet
307 | facet normal 0 0 0
308 | outer loop
309 | vertex 0 0 0
310 | vertex 1 0 1
311 | vertex 1 0 0
312 | endloop
313 | endfacet
314 | facet normal 0 0 0
315 | outer loop
316 | vertex 0 1 0
317 | vertex 0 1 1
318 | vertex 1 1 1
319 | endloop
320 | endfacet
321 | facet normal 0 0 0
322 | outer loop
323 | vertex 0 1 0
324 | vertex 1 1 1
325 | vertex 1 1 0
326 | endloop
327 | endfacet
328 | endsolid cube
329 | ```
330 | ````
331 |
332 | ## Markdown
333 |
334 | **It works.**
335 |
336 | ```md
337 | **It works.**
338 | ```
339 |
340 | ## SVG
341 |
342 |
343 |
344 | ```md
345 |
346 | ```
347 |
348 | SVG Animation
349 |
350 |
351 |
352 | ```md
353 |
354 | ```
355 |
356 | ## PNG
357 |
358 |
359 |
360 | ```md
361 |
362 | ```
363 |
364 | ## GIF
365 |
366 |
367 |
368 | ```md
369 |
370 | ```
371 |
372 | ## JPEG
373 |
374 |
375 |
376 | ```md
377 |
378 | ```
379 |
380 | ## Text
381 |
382 | ```txt
383 | [x] Task 1
384 | [] Task 2
385 | ```
386 |
387 | ````md
388 | ```txt
389 | [x] Task 1
390 | [] Task 2
391 | ```
392 | ````
393 |
--------------------------------------------------------------------------------
/MathJax.md:
--------------------------------------------------------------------------------
1 | # Text Color
2 |
3 | Using MathJax syntax:
4 |
5 | | Color Name | Code | Example |
6 | |-----------------|----------------------------------------------------------------------------------------------|----------------------------------------------------------------|
7 | | Apricot | `$\color{Apricot}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Apricot}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
8 | | Aquamarine | `$\color{Aquamarine}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Aquamarine}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
9 | | Bittersweet | `$\color{Bittersweet}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Bittersweet}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
10 | | Black | `$\color{Black}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Black}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
11 | | Blue | `$\color{Blue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Blue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
12 | | BlueGreen | `$\color{BlueGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{BlueGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
13 | | BlueViolet | `$\color{BlueViolet}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{BlueViolet}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
14 | | BrickRed | `$\color{BrickRed}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{BrickRed}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
15 | | Brown | `$\color{Brown}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Brown}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
16 | | BurntOrange | `$\color{BurntOrange}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{BurntOrange}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
17 | | CadetBlue | `$\color{CadetBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{CadetBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
18 | | CarnationPink | `$\color{CarnationPink}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{CarnationPink}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$|
19 | | Cerulean | `$\color{Cerulean}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Cerulean}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
20 | | CornflowerBlue | `$\color{CornflowerBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{CornflowerBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$|
21 | | Cyan | `$\color{Cyan}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Cyan}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
22 | | Dandelion | `$\color{Dandelion}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Dandelion}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
23 | | DarkOrchid | `$\color{DarkOrchid}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{DarkOrchid}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
24 | | Emerald | `$\color{Emerald}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Emerald}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
25 | | ForestGreen | `$\color{ForestGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{ForestGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$|
26 | | Fuchsia | `$\color{Fuchsia}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Fuchsia}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
27 | | Goldenrod | `$\color{Goldenrod}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Goldenrod}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
28 | | Gray | `$\color{Gray}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Gray}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
29 | | Green | `$\color{Green}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Green}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
30 | | GreenYellow | `$\color{GreenYellow}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{GreenYellow}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$|
31 | | JungleGreen | `$\color{JungleGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{JungleGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$|
32 | | Lavender | `$\color{Lavender}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Lavender}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
33 | | LimeGreen | `$\color{LimeGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{LimeGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
34 | | Magenta | `$\color{Magenta}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Magenta}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
35 | | Mahogany | `$\color{Mahogany}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Mahogany}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
36 | | Maroon | `$\color{Maroon}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Maroon}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
37 | | Melon | `$\color{Melon}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Melon}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
38 | | MidnightBlue | `$\color{MidnightBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{MidnightBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
39 | | Mulberry | `$\color{Mulberry}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Mulberry}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
40 | | NavyBlue | `$\color{NavyBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{NavyBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
41 | | OliveGreen | `$\color{OliveGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{OliveGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
42 | | Orange | `$\color{Orange}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Orange}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
43 | | OrangeRed | `$\color{OrangeRed}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{OrangeRed}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
44 | | Orchid | `$\color{Orchid}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Orchid}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
45 | | Peach | `$\color{Peach}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Peach}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
46 | | Periwinkle | `$\color{Periwinkle}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Periwinkle}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
47 | | PineGreen | `$\color{PineGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{PineGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
48 | | Plum | `$\color{Plum}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Plum}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
49 | | ProcessBlue | `$\color{ProcessBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{ProcessBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
50 | | Purple | `$\color{Purple}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Purple}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
51 | | RawSienna | `$\color{RawSienna}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{RawSienna}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
52 | | Red | `$\color{Red}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Red}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
53 | | RedOrange | `$\color{RedOrange}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{RedOrange}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
54 | | RedViolet | `$\color{RedViolet}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{RedViolet}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
55 | | Rhodamine | `$\color{Rhodamine}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Rhodamine}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
56 | | RoyalBlue | `$\color{RoyalBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{RoyalBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
57 | | RoyalPurple | `$\color{RoyalPurple}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{RoyalPurple}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
58 | | RubineRed | `$\color{RubineRed}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{RubineRed}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
59 | | Salmon | `$\color{Salmon}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Salmon}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
60 | | SeaGreen | `$\color{SeaGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{SeaGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
61 | | Sepia | `$\color{Sepia}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Sepia}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
62 | | SkyBlue | `$\color{SkyBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{SkyBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
63 | | SpringGreen | `$\color{SpringGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{SpringGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
64 | | Tan | `$\color{Tan}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Tan}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
65 | | TealBlue | `$\color{TealBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{TealBlue}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
66 | | Thistle | `$\color{Thistle}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Thistle}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
67 | | Turquoise | `$\color{Turquoise}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Turquoise}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
68 | | Violet | `$\color{Violet}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Violet}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
69 | | VioletRed | `$\color{VioletRed}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{VioletRed}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
70 | | White | `$\color{White}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{White}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
71 | | WildStrawberry | `$\color{WildStrawberry}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{WildStrawberry}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
72 | | Yellow | `$\color{Yellow}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{Yellow}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
73 | | YellowGreen | `$\color{YellowGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{YellowGreen}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$ |
74 | | YellowOrange | `$\color{YellowOrange}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$` | $\color{YellowOrange}{The\ quick\ brown\ fox\ jumps\ over\ the\ lazy\ dog.}$|
75 |
76 | [Source](https://en.wikibooks.org/wiki/LaTeX/Colors#Adding_the_color_package)
77 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
297 | Lorem ipsum dolor sit amet, consectetur adipiscing elit.302 | ``` 303 | 304 |Sed do eiusmod tempor incididunt ut labore et dolore magna 298 | aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 299 | Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.Excepteur sint 300 | occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.301 |
305 | Lorem ipsum dolor sit amet, consectetur adipiscing elit.310 | 311 | ````md 312 |Sed do eiusmod tempor incididunt ut labore et dolore magna 306 | aliqua.Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 307 | Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.Excepteur sint 308 | occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.309 |
| The quick brown fox jumps over the lazy dog. |
| The quick brown fox jumps over the lazy dog. |
496 |
497 |
501 |
502 |
503 |
507 |
508 |
512 |
513 |
514 |
518 |
519 |
523 |
524 |
525 |
| 540 | The quick brown fox jumps over the lazy dog. 541 | | 542 |543 | The quick brown fox jumps over the lazy dog. 544 | | 545 |546 | The quick brown fox jumps over the lazy dog. 547 | | 548 |
| 555 | The quick brown fox jumps over the lazy dog. 556 | | 557 |558 | The quick brown fox jumps over the lazy dog. 559 | | 560 |561 | The quick brown fox jumps over the lazy dog. 562 | | 563 |
| Heading 1 | 616 |Heading 2 | 617 |
|---|---|
| 621 | 622 | | A | B | C | 623 | |--|--|--| 624 | | 1 | 2 | 3 | 625 | 626 | | 627 | 628 | | A | B | C | 629 | |--|--|--| 630 | | 1 | 2 | 3 | 631 | 632 | |
| Heading 1 | 638 |Heading 2 | 639 |
|---|---|
| 643 | 644 | | A | B | C | 645 | |--|--|--| 646 | | 1 | 2 | 3 | 647 | 648 | | 649 | 650 | | A | B | C | 651 | |--|--|--| 652 | | 1 | 2 | 3 | 653 | 654 | |
| Before Hoisting | 670 |After Hoisting | 671 |
|---|---|
674 |
675 | console.log(fullName); // undefined
676 | fullName = "Dariana Trahan";
677 | console.log(fullName); // Dariana Trahan
678 | var fullName;
679 |
680 | |
681 |
682 |
683 | var fullName;
684 | console.log(fullName); // undefined
685 | fullName = "Dariana Trahan";
686 | console.log(fullName); // Dariana Trahan
687 |
688 | |
689 |
| Before Hoisting | 696 |After Hoisting | 697 |
|---|---|
700 |
701 | console.log(fullName); // undefined
702 | fullName = "Dariana Trahan";
703 | console.log(fullName); // Dariana Trahan
704 | var fullName;
705 |
706 | |
707 |
708 |
709 | var fullName;
710 | console.log(fullName); // undefined
711 | fullName = "Dariana Trahan";
712 | console.log(fullName); // Dariana Trahan
713 |
714 | |
715 |
851 |
852 | ```md
853 |
854 | ```
855 |
856 |
876 |
877 | ```md
878 |
879 | ```
880 |
881 | ## Theme
882 |
883 | ### Using picture tag
884 |
885 | The HTML `
894 |
901 |
940 |
941 |
942 |
943 |
947 |
948 |
949 |
950 |
956 |
957 |
958 |
959 |
963 |
964 |
965 |
966 |
972 |
973 |
974 |
975 |
976 |
977 |
981 |
982 |
983 |
984 |
985 |
986 |
992 |
993 |
994 |
995 |
996 |
997 |
1001 |
1002 |
1003 |
1004 |
1005 |
1006 |
| The quick brown fox jumps over the lazy dog. |
| The 1503 | quick brown fox jumps over the lazy 1504 | dog. |
| The quick brown fox jumps over the lazy dog. |
| The 1513 | quick brown fox jumps over the lazy 1514 | dog. |