코드를 포함한 블로그작성
코드 포함한 게시글 작성
코드를 포함한 게시글을 마크다운문법을 통해 작성해보자
예) html 문법을 markdown 문법을 사용하여 게시
1<!doctype html>
2<html lang="en">
3<head>
4 <meta charset="utf-8">
5 <title>Example HTML5 Document</title>
6</head>
7<body>
8 <p>Test</p>
9</body>
10<!-- this line is extraneous 2Error from server (Forbidden): deployments.apps is forbidden: User "chiptest" cannot create resource "deployments" in API group "apps" in the namespace "default" -->
11</html>
1<a href="rollco7.github.io" target="_blank"> Rollco7 Blog</a>
위의 코드는 다음과 같이 작성할 수 있다.
1```html
2<a href="rollco7.github.io" target="_blank"> Rollco7 Blog</a>