Skip to content
This repository was archived by the owner on Nov 14, 2021. It is now read-only.

Commit 08cd5d1

Browse files
committed
docs: Add lowercase files
1 parent 57cc571 commit 08cd5d1

32 files changed

+560
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
id: 2020-09-19-example-pages
3+
title: 'Example Pages'
4+
---
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
id: 2020-09-16-advanced-blocks
3+
title: 'Advanced Blocks'
4+
---

docs/test/2020-09-16-child-page.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
id: 2020-09-16-child-page
3+
title: 'Child Page'
4+
---
5+
6+
## Hello! I'm child page.
7+
8+
> ☝ Create a child page folder in the current location and import the child page. This happens recursively.
9+
10+
[GrandChild Page](GrandChild-Page/GrandChild-Page.md)
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
id: 2020-09-16-code-blocks
3+
title: 'Code Blocks'
4+
---
5+
6+
## Code `Support`
7+
8+
### Plain Text
9+
10+
```plain text
11+
Hello World
12+
```
13+
14+
### Bash
15+
16+
```bash
17+
#!/bin/bash
18+
STR="Hello World!"
19+
echo $STR
20+
```
21+
22+
### C
23+
24+
```c
25+
#include <stdio.h>
26+
27+
int main(void)
28+
{
29+
printf("hello, world\n");
30+
}
31+
```
32+
33+
### Python
34+
35+
```python
36+
print("Hello World")
37+
```
38+
39+
### Java
40+
41+
```java
42+
class HelloWorldApp {
43+
public static void main(String[] args) {
44+
System.out.println("Hello World!");
45+
}
46+
}
47+
```
48+
49+
### JavaScript
50+
51+
```javascript
52+
console.log('Hello World!');
53+
```
54+
55+
### TypeScript
56+
57+
```typescript
58+
console.log('Hello World!');
59+
```
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
id: 2020-09-16-embed-blocks
3+
title: 'Embed Blocks'
4+
---
5+
6+
## Image `Support`
7+
8+
- Uploaded image (Download to Local)
9+
10+
![2020-09-16-embed-blocks-image-0](images/2020-09-16-embed-blocks-image-0.png)
11+
12+
- Linked Image (Link to Image)
13+
14+
![2020-09-16-embed-blocks-image-1](https://images.unsplash.com/photo-1526170375885-4d8ecf77b99f?ixlib=rb-1.2.1&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjYzOTIxfQ)
15+
16+
## Web Bookmark `Support`
17+
18+
[younho9/notion2github](https://github.com/younho9/notion2github)
19+
20+
## Video `Not Support`
21+
22+
## Audio `Not Support`
23+
24+
## File `Not Support`
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
id: 2020-09-16-grandchild-page
3+
title: 'GrandChild Page'
4+
---
5+
6+
## Hello! I'm grandchild page
7+
8+
> ☝ Create a child page folder in the current location and import the child page. This happens recursively.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
id: 2020-09-16-page-blocks
3+
title: 'Page Blocks'
4+
---
5+
6+
## Page `Support`
7+
8+
> ☝ Create a child page folder in the current location and import the child page. This happens recursively.
9+
10+
[Child Page](Child-Page/Child-Page.md)
11+
12+
## Linked Page `Support`
13+
14+
> ☝ Just link to Notion page.
15+
16+
[Linked Page](https://www.notion.so/64c69eaf268a4076bf48d8ee5f2ca8c8)
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
id: 2020-09-16-table-blocks
3+
title: 'Table Blocks'
4+
---
5+
6+
## Simple Table
7+
8+
| Markdown Syntax | Output | Support | Example | Keyboard shortcut in Notion | Style |
9+
| ----------------- | ---------------------------------------------- | --------------- | ------------------------------------------- | --------------------------- | ---------------------- |
10+
| `** ** or __ __` | **This is bold text** | ['Support'] | **This is bold text** | `Cmd/Ctrl` + `B` | Bold |
11+
| `* * or _ _` | _This text is italicized_ | ['Support'] | _This text is italicized_ | `Cmd/Ctrl` + `I` | Italic |
12+
| `~~ ~~` | ~~This was mistaken text~~ | ['Support'] | ~~This was mistaken text~~ | `Cmd/Ctrl` + `Shfit` + `S` | Strikethrough |
13+
| `** ** and _ _` | **This text is** **_extremely_** **important** | ['Support'] | **This text is _extremely_ important** | | Bold and nested italic |
14+
| `**_ _**` | **_All this text is important_** | ['Support'] | **_All this text is important_** | | All bold and italic |
15+
| `~~**_ _**~~` | ~~**_This text is mixed_**~~ | ['Support'] | ~~**_This text is mixed_**~~ | | mixed |
16+
| `` | `console.log('hello');` | ['Support'] | `console.log('hello');` | `Cmd/Ctrl` + `E` | Inline Code |
17+
| `[alt text](url)` | [this text is link](https://bit.ly/33x1vN5) | ['Support'] | [this text is link](https://bit.ly/33x1vN5) | `Cmd/Ctrl` + `K` | Link |
18+
| | This text has underline | ['Not Support'] | This text has underline | `Cmd/Ctrl` + `U` | Underline |
19+
| | This text has color | ['Not Support'] | This text has color | `Cmd/Ctrl` + `Shfit` + `H` | Color |
20+
| | This text has background color | ['Not Support'] | This text has background color | `Cmd/Ctrl` + `Shfit` + `H` | Background Color |
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
id: 2020-09-19-linked-page
3+
title: 'Linked Page'
4+
---
5+
6+
## Linked page
7+
8+
> 🔗 This page is linked in ["Page Blocks"](https://bit.ly/3hGUlLf). This is just to test the Linked Page.

docs/test/2020-09-24-child-page.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
id: 2020-09-24-child-page
3+
title: 'Child Page'
4+
---
5+
6+
## Image `Support`
7+
8+
- Uploaded image (Download to Local)
9+
10+
![2020-09-24-child-page-image-0](images/2020-09-24-child-page-image-0.png)
11+
12+
![2020-09-24-child-page-image-1](images/2020-09-24-child-page-image-1.png)
13+
14+
[GrandChild Page](GrandChild-Page/GrandChild-Page.md)
15+
16+
![2020-09-24-child-page-image-2](images/2020-09-24-child-page-image-2.jpeg)
17+
18+
![2020-09-24-child-page-image-3](images/2020-09-24-child-page-image-3.jpeg)

0 commit comments

Comments
 (0)