Skip to content

Commit

Permalink
chore: cleanup examples
Browse files Browse the repository at this point in the history
  • Loading branch information
zce committed Nov 23, 2023
1 parent dad38d3 commit 795580e
Show file tree
Hide file tree
Showing 15 changed files with 119 additions and 3 deletions.
Binary file modified examples/basic/content/categories/journal.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed examples/basic/content/options/itbetter.jpg
Binary file not shown.
Binary file removed examples/basic/content/options/wechat.jpg
Binary file not shown.
Binary file removed examples/basic/content/pages/about/cover.jpg
Binary file not shown.
Binary file added examples/basic/content/pages/contact/img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 58 additions & 1 deletion examples/basic/content/pages/contact/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,61 @@ title: Contact
slug: contact
---

<img src="wechat.jpg" />
![](img.png)

# Heading (rank 1)

## Heading 2

### 3

#### 4

##### 5

###### 6

> Block quote
- Unordered
- List

1. Ordered
2. List

A paragraph, introducing a thematic break:

---

```js
some.code()
```

a [link](https://example.com), an ![image](./image.png), some _emphasis_,
something **strong**, and finally a little `code()`.

# GFM

## Autolink literals

www.example.com, https://example.com, and contact@example.com.

## Footnote

A note[^1]

[^1]: Big note.

## Strikethrough

~one~ or ~~two~~ tildes.

## Table

| a | b | c | d |
| --- | :-- | --: | :-: |

## Tasklist

- [ ] to do
- [x] done
Binary file removed examples/basic/content/pages/contact/wechat.jpg
Binary file not shown.
Binary file modified examples/next/content/categories/journal.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed examples/next/content/options/itbetter.jpg
Binary file not shown.
Binary file removed examples/next/content/options/wechat.jpg
Binary file not shown.
Binary file removed examples/next/content/pages/about/cover.jpg
Binary file not shown.
4 changes: 3 additions & 1 deletion examples/next/content/pages/about/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@ slug: about
# Hello, world!

<div className="note">
> Some notable things in a block quote!

> Some notable things in a block quote!
</div>
Binary file added examples/next/content/pages/contact/img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 58 additions & 1 deletion examples/next/content/pages/contact/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,61 @@ title: Contact
slug: contact
---

<Image src="wechat.jpg" width={300} height={450} />
![](img.png)

# Heading (rank 1)

## Heading 2

### 3

#### 4

##### 5

###### 6

> Block quote
- Unordered
- List

1. Ordered
2. List

A paragraph, introducing a thematic break:

---

```js
some.code()
```

a [link](https://example.com), an ![image](./image.png), some _emphasis_,
something **strong**, and finally a little `code()`.

# GFM

## Autolink literals

www.example.com, https://example.com, and contact@example.com.

## Footnote

A note[^1]

[^1]: Big note.

## Strikethrough

~one~ or ~~two~~ tildes.

## Table

| a | b | c | d |
| --- | :-- | --: | :-: |

## Tasklist

- [ ] to do
- [x] done
Binary file removed examples/next/content/pages/contact/wechat.jpg
Binary file not shown.

0 comments on commit 795580e

Please sign in to comment.