Hello World 你好 世界

Hello World 你好 世界

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

Published on
Reading time
🕑4 min read

Markdown Syntax ❤️

Paragraphs

Next.js is an open-source web development framework created by Vercel enabling React-based web applications with server-side rendering and generating static websites.

Line Break

Lorem ipsum dolor sit amet,
consectetur adipiscing elit 🤣,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Id donec ultrices tincidunt arcu non sodales neque sodales.
Adipiscing diam donec adipiscing tristique risus nec feugiat in.

Emphasis

Bold

Love is bold

Italic

A cat meow

Bold and Italic

This is really very important text.

Blockquotes

Blockquotes can also be nested…

…by using additional greater-than signs right next to each other…

…or with spaces between arrows.

Lists

Unordered

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

Ordered

  1. Lorem ipsum dolor sit amet
  2. Consectetur adipiscing elit
  3. Integer molestie lorem at massa

Start numbering with offset:

  1. foo
  2. bar

Code

Inline Code

This is an array [1, 2, 3][1, 2, 3] of numbers 1 through 3.

Code Block

Sample text here...
pnpm build
pnpm build
Counter.tsx
import { useState } from 'react'
 
export default function Counter() {
  const [count, setCount] = useState(0)
 
  function incrementCount() {
    setCount((count) => count + 1) // 👈 更新狀態
  }
 
  return (
    <>
      <p>Counter: {count}</p>
      <button onClick={incrementCount}>+1</button>
    </>
  )
}
Counter.tsx
import { useState } from 'react'
 
export default function Counter() {
  const [count, setCount] = useState(0)
 
  function incrementCount() {
    setCount((count) => count + 1) // 👈 更新狀態
  }
 
  return (
    <>
      <p>Counter: {count}</p>
      <button onClick={incrementCount}>+1</button>
    </>
  )
}

Horizontal Rule


Internal

Home

About

External

YouTube

Google

Adding Titles

YouTube

Image

Local image ( /public/images/lulu.jpg )

a cat called LuLu

Escaping Characters

* Without the backslash, this would be a bullet in an unordered list.

Plugins

remark-gfm

www.example.com, https://example.com, and [email protected]

Footnote

A note1

Strikethrough

one or two tildes.

Table

First HeaderSecond Header
Content Cell 1Content Cell 1
Content Cell 2Content Cell 2
Content Cell 3Content Cell 3
Content Cell 4Content Cell 4

Tasklist

  • to do
  • done

remark-smartypants

Straight quotes: “Isn’t this fun?”

Backticks-style quotes: Isn't this fun?

Dashes: “isn’t—this—fun?”

Three consecutive dots: “isn’t…this…fun?”

Components

Image

<Image src='/images/lulu.jpg' alt='...' zoomIn={false} />
<Image src='/images/lulu.jpg' alt='...' zoomIn={false} />
a cat called LuLu

SVG

XMind

Keybored

Lorem Command+K sed do eiusmod tempor Ctrl+Shift+F ut. Id donec F tincidunt arcu non sodales neque sodales.

Callouts

note
Some content here…
success
Some content here…
warning
Some content here…
error
Some content here…
Custom Title
Some content here…

Framer Motion

Collapse

Click to expand
Some content here…
Custom Title

Default Open 😽

Tabs

Tab LableThis is awesome !
This is Tabs component.

Bookmark

GitHubnekochan0122 - Overview

nekochan0122 has 34 repositories available. Follow their code on GitHub.

nekochan0122 has 34 repositories available. Follow their code on GitHub.
GitHubGitHub - vercel/next.js: The React Framework

The React Framework. Contribute to vercel/next.js development by creating an account on GitHub.

The React Framework. Contribute to vercel/next.js development by creating an account on GitHub.

Embeds

YouTube

Twitter

Sandpack

Spoiler

Lorem ipsum dolor sit amet,
consectetur adipiscing elit 🤣,
sed do eiusmodtempor incididunt ut labore et dolore magna aliqua.
Id donec ultricestincidunt arcu non sodales neque sodales.
Adipiscing diam donec adipiscing tristique risus nec feugiat in.

a cat called LuLu
SPOILER
a cat called LuLu
a cat called LuLu
a cat called LuLu
SPOILER
Tip

You can press shift to scroll horizontally.

Footnotes

  1. Big note. ↩

More Posts

Comments