Skip to content

Commit aa32e60

Browse files
committed
Upgraded package.json to latest.
1 parent bf6da4d commit aa32e60

19 files changed

Lines changed: 3703 additions & 432 deletions

content/about.md

Lines changed: 242 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,242 @@
1+
---
2+
title: "About"
3+
date: 2021-12-18T11:10:36+08:00
4+
draft: false
5+
language: en
6+
description: About Us
7+
featured_image: ../assets/images/featured/featured-img-placeholder.png
8+
---
9+
10+
# h1 Heading :blush:
11+
## h2 Heading
12+
### h3 Heading
13+
#### h4 Heading
14+
##### h5 Heading
15+
###### h6 Heading
16+
17+
18+
## Horizontal Rules
19+
20+
***
21+
22+
---
23+
24+
___
25+
26+
27+
## Typographic replacements
28+
29+
Enable typographer option to see result.
30+
31+
(c) (C) (r) (R) (tm) (TM) (p) (P) +-
32+
33+
test.. test... test..... test?..... test!....
34+
35+
!!!!!! ???? ,, -- ---
36+
37+
"Smartypants, double quotes" and 'single quotes'
38+
39+
40+
## Emphasis
41+
42+
**This is bold text**
43+
44+
__This is bold text__
45+
46+
*This is italic text*
47+
48+
_This is italic text_
49+
50+
~~Strikethrough~~
51+
52+
53+
## Blockquotes
54+
55+
56+
> Blockquotes can also be nested...
57+
>> ...by using additional greater-than signs right next to each other...
58+
> > > ...or with spaces between arrows.
59+
60+
61+
## Lists
62+
63+
Unordered
64+
65+
+ Create a list by starting a line with `+`, `-`, or `*`
66+
+ Sub-lists are made by indenting 2 spaces:
67+
- Marker character change forces new list start:
68+
* Ac tristique libero volutpat at
69+
+ Facilisis in pretium nisl aliquet
70+
- Nulla volutpat aliquam velit
71+
+ Very easy!
72+
73+
Ordered
74+
75+
1. Lorem ipsum dolor sit amet
76+
2. Consectetur adipiscing elit
77+
3. Integer molestie lorem at massa
78+
79+
80+
1. You can use sequential numbers...
81+
1. ...or keep all the numbers as `1.`
82+
83+
Start numbering with offset:
84+
85+
57. foo
86+
1. bar
87+
88+
89+
## Code
90+
91+
Inline `code`
92+
93+
Indented code
94+
95+
// Some comments
96+
line 1 of code
97+
line 2 of code
98+
line 3 of code
99+
100+
101+
Block code "fences"
102+
103+
```
104+
Sample text here...
105+
```
106+
107+
Syntax highlighting
108+
109+
```
110+
var foo = function (bar) {
111+
return bar++;
112+
};
113+
114+
console.log(foo(5));
115+
```
116+
117+
## Tables
118+
119+
| Option | Description |
120+
| ------ | ----------- |
121+
| data | path to data files to supply the data that will be passed into templates. |
122+
| engine | engine to be used for processing templates. Handlebars is the default. |
123+
| ext | extension to be used for dest files. |
124+
125+
Right aligned columns
126+
127+
| Option | Description |
128+
| ------:| -----------:|
129+
| data | path to data files to supply the data that will be passed into templates. |
130+
| engine | engine to be used for processing templates. Handlebars is the default. |
131+
| ext | extension to be used for dest files. |
132+
133+
134+
## Links
135+
136+
[link text](http://dev.nodeca.com)
137+
138+
[link with title](http://nodeca.github.io/pica/demo/ "title text!")
139+
140+
Autoconverted link https://github.com/nodeca/pica (enable linkify to see)
141+
142+
143+
## Images
144+
145+
![Minion](https://octodex.github.com/images/minion.png)
146+
![Stormtroopocat](https://octodex.github.com/images/stormtroopocat.jpg "The Stormtroopocat")
147+
148+
Like links, Images also have a footnote style syntax
149+
150+
![Alt text][id]
151+
152+
With a reference later in the document defining the URL location:
153+
154+
[id]: https://octodex.github.com/images/dojocat.jpg "The Dojocat"
155+
156+
157+
## Plugins
158+
159+
The killer feature of `markdown-it` is very effective support of
160+
[syntax plugins](https://www.npmjs.org/browse/keyword/markdown-it-plugin).
161+
162+
163+
### [Emojies](https://github.com/markdown-it/markdown-it-emoji)
164+
165+
> Classic markup: :wink: :crush: :cry: :tear: :laughing: :yum:
166+
>
167+
> Shortcuts (emoticons): :-) :-( 8-) ;)
168+
169+
see [how to change output](https://github.com/markdown-it/markdown-it-emoji#change-output) with twemoji.
170+
171+
172+
### [Subscript](https://github.com/markdown-it/markdown-it-sub) / [Superscript](https://github.com/markdown-it/markdown-it-sup)
173+
174+
- 19^th^
175+
- H~2~O
176+
177+
178+
### [\<ins>](https://github.com/markdown-it/markdown-it-ins)
179+
180+
++Inserted text++
181+
182+
183+
### [\<mark>](https://github.com/markdown-it/markdown-it-mark)
184+
185+
==Marked text==
186+
187+
188+
### [Footnotes](https://github.com/markdown-it/markdown-it-footnote)
189+
190+
Footnote 1 link[^first].
191+
192+
Footnote 2 link[^second].
193+
194+
Inline footnote^[Text of inline footnote] definition.
195+
196+
Duplicated footnote reference[^second].
197+
198+
[^first]: Footnote **can have markup**
199+
200+
and multiple paragraphs.
201+
202+
[^second]: Footnote text.
203+
204+
205+
### [Definition lists](https://github.com/markdown-it/markdown-it-deflist)
206+
207+
Term 1
208+
209+
: Definition 1
210+
with lazy continuation.
211+
212+
Term 2 with *inline markup*
213+
214+
: Definition 2
215+
216+
{ some code, part of Definition 2 }
217+
218+
Third paragraph of definition 2.
219+
220+
_Compact style:_
221+
222+
Term 1
223+
~ Definition 1
224+
225+
Term 2
226+
~ Definition 2a
227+
~ Definition 2b
228+
229+
230+
### [Abbreviations](https://github.com/markdown-it/markdown-it-abbr)
231+
232+
This is HTML abbreviation example.
233+
234+
It converts "HTML", but keep intact partial entries like "xxxHTMLyyy" and so on.
235+
236+
*[HTML]: Hyper Text Markup Language
237+
238+
### [Custom containers](https://github.com/markdown-it/markdown-it-container)
239+
240+
::: warning
241+
*here be dragons*
242+
:::

content/contact.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: Contact
3+
date: 2021-12-18T03:10:36.000Z
4+
draft: false
5+
language: en
6+
description: A test with @tailwindcss/typography & Prose
7+
---
8+
9+
<!-- @format -->
10+
11+
<section class="lg:pb-24">
12+
<div class="px-4 mx-auto max-w-screen-md">
13+
<p class="mb-8 font-light text-center text-gray-500 lg:mb-16 dark:text-gray-400 sm:text-xl">Got a technical issue? Want to send feedback about a beta feature? Need details about our Business plan? Let us know.</p>
14+
<form name="contact" action="https://formsubmit.co/your@email.com" method="POST" class="space-y-8">
15+
<div class="my-4">
16+
<label for="email" class="block mb-2 font-medium text-gray-900 text-md dark:text-gray-50"><strong>Your Email:</strong></label>
17+
<input type="email" name="email" class="block p-2.5 w-full text-gray-900 bg-gray-50 rounded-lg border border-gray-300 shadow-sm placeholder:text-gray-500 text-md focus:ring-indigo-500 focus:border-indigo-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder:text-gray-300 dark:text-white dark:focus:ring-indigo-500 dark:focus:border-indigo-500" placeholder="name@example.com" required>
18+
</div>
19+
<div class="my-4">
20+
<label for="subject" class="block mb-2 font-medium text-gray-900 text-md dark:text-gray-50"><strong>Subject:</strong></label>
21+
<input type="text" name="subject" class="block p-2.5 w-full text-gray-900 bg-gray-50 rounded-lg border border-gray-300 shadow-sm placeholder:text-gray-500 text-md focus:ring-indigo-500 focus:border-indigo-500 dark:bg-gray-700 dark:border-gray-600 dark:placeholder:text-gray-300 dark:text-white dark:focus:ring-indigo-500 dark:focus:border-indigo-500" placeholder="Let us know how we can help you" required>
22+
</div>
23+
<div class="my-4 sm:col-span-2">
24+
<label for="message" class="block mb-2 font-medium text-gray-900 text-md dark:text-gray-50"><strong>Your message:</strong></label>
25+
<textarea id="message" name="message" rows="6" class="block p-2.5 w-full text-gray-900 bg-gray-50 rounded-lg border border-gray-300 shadow-sm placeholder:text-gray-500 text-md focus:ring-white focus:border-white dark:bg-gray-700 dark:border-gray-600 dark:placeholder:text-gray-300 dark:text-white dark:focus:ring-white dark:focus:border-white" placeholder="Leave a comment..."></textarea>
26+
</div>
27+
<div class="mt-6 lg:pb-16">
28+
<button type="submit" class="px-5 py-3 font-bold text-center text-white bg-indigo-600 rounded-lg text-md sm:w-fit hover:bg-indigo-800 focus:ring-4 focus:outline-none focus:ring-indigo-300 dark:bg-indigo-600 dark:hover:bg-indigo-700 dark:focus:ring-indigo-800">Send Message</button>
29+
</div>
30+
</form>
31+
</div>
32+
</section>

0 commit comments

Comments
 (0)