summaryrefslogtreecommitdiff
path: root/content/posts/typography.md
diff options
context:
space:
mode:
authorxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-11-18 12:15:16 +0200
committerxAlpharax <42233094+xAlpharax@users.noreply.github.com>2023-11-18 12:15:16 +0200
commit8628a4ae2e7c8998c8d2ffe2ecc51f2624aa66b1 (patch)
treebd4bfbb9a9a77dfca3f3849f567fae45155b10b8 /content/posts/typography.md
parentd0a72793fffc208323292430bbbd8a0c7c2b6a2d (diff)
Massive changes - migrating to Hermit with a few tweaks.
Changes to be committed: new file: .gitignore modified: .gitmodules modified: config.toml new file: content/about.md deleted: content/blog/_index.md deleted: content/blog/first.md deleted: content/blog/second.md new file: content/posts/_index.md new file: content/posts/code_test.md new file: content/posts/good_first_post.md new file: content/posts/later_posts.md new file: content/posts/typography.md deleted: description deleted: index.html deleted: public/blog/first/index.html deleted: public/blog/index.html deleted: public/blog/second/index.html deleted: public/elasticlunr.min.js deleted: public/search_index.en.js deleted: public/typography.css new file: sass/_animate.scss new file: sass/_icons.scss new file: sass/_normalize.scss new file: sass/_predefined.scss new file: sass/_syntax.scss new file: sass/style.scss new file: static/favicon-32x32.png new file: static/favicon.ico new file: static/js/main.js modified: templates/404.html deleted: templates/base.html deleted: templates/blog-page.html deleted: templates/blog.html new file: templates/index.html new file: templates/macros.html new file: templates/page.html new file: templates/section.html new file: templates/tags/list.html new file: templates/tags/single.html new file: themes/404.html new file: themes/config.toml deleted: themes/hermit_zola
Diffstat (limited to 'content/posts/typography.md')
-rw-r--r--content/posts/typography.md69
1 files changed, 69 insertions, 0 deletions
diff --git a/content/posts/typography.md b/content/posts/typography.md
new file mode 100644
index 0000000..cbc7328
--- /dev/null
+++ b/content/posts/typography.md
@@ -0,0 +1,69 @@
++++
+title = "Typography"
+date = 2018-09-29T11:36:33+08:00
+draft = false
+[taxonomies]
+tags=["test", "original_post"]
+[extra]
+toc=true
++++
+
+Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.[^1]
+
+> An apple is a sweet, edible fruit produced by an apple tree (Malus pumila). Apple trees are cultivated worldwide, and are the most widely grown species in the genus Malus. The tree originated in Central Asia, where its wild ancestor, Malus sieversii, is still found today. Apples have been grown for thousands of years in Asia and Europe, and were brought to North America by European colonists. Apples have religious and mythological significance in many cultures, including Norse, Greek and European Christian traditions.[^2]
+---
+
+Inline styles:
+
+**strong**, *emphasis*, ***strong and emphasis***,`code`, <u>underline</u>, ~~strikethrough~~, :joy:🤣, $\LaTeX$, X^2^, H~2~O, ==highlight==, [Link](https://example.com), and image:
+
+![img](https://picsum.photos/600/400/?random)
+
+---
+
+Headings:
+
+# Heading 1
+
+## Heading 2
+
+### Heading 3
+
+#### Heading 4
+
+##### Heading 5
+
+###### Heading 6
+
+Table:
+
+| Left-Aligned | Center Aligned | Right Aligned |
+| :------------ | :-------------: | ------------: |
+| col 3 is | some wordy text | $1600 |
+| col 2 is | centered | $12 |
+| zebra stripes | are neat | $1 |
+
+Lists:
+
+* Unordered list item 1.
+* Unordered list item 2.
+
+1. ordered list item 1.
+2. ordered list item 2.
+ + sub-unordered list item 1.
+ + sub-unordered list item 2.
+ + [x] something is DONE.
+ + [ ] something is NOT DONE.
+
+Syntax Highlighting:
+
+```javascript
+const num1 = prompt("Enter first number");
+const num2 = prompt("Enter second number");
+const sum = parseInt(num1, 10) + parseInt(num2, 10); // "+" means "add"
+alert("Sum = " + sum); // "+" means combine into a string
+```
+
+[^1]: From [https://www.lipsum.com/](https://www.lipsum.com/)
+
+[^2]: From [https://en.wikipedia.org/wiki/Apple](https://en.wikipedia.org/wiki/Apple)