# Practice page

Input

Internal Links:
[Getting Started](/en/guide/start.md)
External Links:
[GitHub](https://github.com/eastonyangxu/vuepress_template)
1
2
3
4

Click link:Getting Started GitHub (opens new window)

Official case

Official documents: official (opens new window)

# GitHub-Style Tables

Input

| Tables        |      Are      |  Cool |
| ------------- | :-----------: | ----: |
| col 3 is      | right-aligned | $1600 |
| col 2 is      |   centered    |   $12 |
| zebra stripes |   are neat    |    $1 |
1
2
3
4
5

Output

Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

# Emoji

Input

:tada: :100: :orange: :houses: :car: :boy: :clock3: :no_entry_sign:
1

Output
🎉 💯 🍊 🏘 🚗 👦 🕒 🚫

list of all emojis: list of all emojis (opens new window)

# Table of Contents

Input

[[toc]]
1

Output

# Escaping

By default, fenced code blocks are automatically wrapped with v-pre. To display raw mustaches or Vue-specific syntax inside inline code snippets or plain text, you need to wrap a paragraph with the v-pre custom container:
Input

::: v-pre
`{{ This will be displayed as-is }}`
:::
1
2
3

Output

{{ This will be displayed as-is }}

# Deploying to github pages

Last Updated: 4/21/2023, 5:53:13 PM