Markdown Test Page
Simple Markdown Test

markdown syntax

h1 heading

h2 heading

h3 heading

h4 heading

h5 heading
h6 heading

normal

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Footnote

this is footnote1 and this is footnote2

code block

// text
ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
// very long text
ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
// c
#include<stdio.h>
int main(int argc, char * argv[])
{
    printf("Hello World!\n");
    return 0;
}
// cpp
#include<stdio.h>
int main(int argc, char * argv[])
{
    printf("Hello World!\n");
    return 0;
}
// ts
console.log('hello');
// js
console.log('hello');
# python
print([1,'2'])
// csharp
using System;
namespace HelloWorld
{
    class Hello 
    {
        static void Main() 
        {
            Console.WriteLine("Hello World!");
        }
    }
}
# bash
if [ $var -eq 0 ];then
  echo "\$var is 0";
else
  echo "\$var is not 0";
fi
# ruby
puts "hello"
<!-- html -->
<p>sample</p>
<!-- xml -->
<volume-bgm>70</volume-bgm>
// go
func main() {
    fmt.Println("hello");
}
; lisp
(prefer-coding-system 'utf-8)
// java
credential = GoogleAccountCredential.usingOAuth2(activity)
/* scss */
@mixin border-radius($radius) {
  border-radius: $radius;
}
/* less */
.border-radius(@radius) {
  border-radius: @radius;
}
{
    "key": "json"
}
rem batch
C:\program files\Unity\Editor\Unity.exe -quit -batchmode -executeMethod BuildScript.BuildGame
MonoBehaviour:
  m_ObjectHideFlags: 1
/* css */
.container .grid_1 {width: 57px;}

mermaid

graph TD A[Christmas] -->|Get money| B(Go shopping) B --> C{Let me think} C -->|One| D[노트북] C -->|Two| E[아이폰] C -->|Three| F[fa:fa-car Car]
sequenceDiagram Alice->>+John: Hello John, how are you? Alice->>+John: John, can you hear me? John-->>-Alice: Hi Alice, I can hear you! John-->>-Alice: I feel great!

inline test

this is code elem. this is bold elem. this is italic elem. this is link elem.

emphasis

Emphasis, aka italics, with asterisks or underscores.

Strong emphasis, aka bold, with asterisks or underscores.

Combined emphasis with asterisks and underscores.

Strikethrough uses two tildes. Scratch this.

this is google

this is google

image test

sample gif

sample png

sample filename

unordered list

  • unordered list 1
  • unordered list 2
    • unordered list 1
    • unordered list 2
  • unordered list 3

ordered list

  1. ordered list 1
  2. ordered list 2
    1. ordered list 1
    2. ordered list 2
  3. ordered list 3

blockquotes

This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.

Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse id sem consectetuer libero luctus adipiscing.

indent

hello
world
foo
bar
spam

Table

style 1

ABA or B
FalseFalseFalse
TrueFalseTrue
FalseTrueTrue
TrueTrueTrue

style 2

ABA or B
FalseFalseFalse
TrueFalseTrue
FalseTrueTrue
TrueTrueTrue

horizontal bar

foo


bar

LaTeX

expression, $e^{i\pi} + 1 = 0$ is here.

this is block.

$$e^x=\sum_{i=0}^\infty \frac{1}{i!}x^i$$

multi line LaTeX

$\begin{bmatrix} 1 & 1. & 1. \ 1 & 1. & 1. \ \end{bmatrix} + \begin{bmatrix} 1 & 2. & 3. \ 4 & 5. & 6. \ \end{bmatrix} = \begin{bmatrix} 2 & 3. & 4. \ 5 & 6. & 7. \ \end{bmatrix}$

1. 같은 형태로 들어가지 않도록 주의한다. markdown 문법으로 인식되면 제대로 작동하지 않는다.

todo

  • first
  • second

  1. foo ↩︎

  2. bar ↩︎


comments powered by Disqus