Markdown은 텍스트 기반의 마크업언어로 2004년 존그루버에 의해 만들어졌으며 쉽게 쓰고 읽을 수 있으며 HTML로 변환이 가능하다. 특수기호와 문자를 이용한 매우 간단한 구조의 문법을 사용하여 웹에서도 보다 빠르게 컨텐츠를 작성하고 보다 직관적으로 인식할 수 있다. 마크다운이 최근 각광받기 시작한 이유는 깃헙(https://github.com) 덕분이다. 깃헙의 저장소Repository에 관한 정보를 기록하는 README.md는 깃헙을 사용하는 사람이라면 누구나 가장 먼저 접하게 되는 마크다운 문서였다. 마크다운을 통해서 설치방법, 소스코드 설명, 이슈 등을 간단하게 기록하고 가독성을 높일 수 있다는 강점이 부각되면서 점점 여러 곳으로 퍼져가게 된다.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🌞 Morning 21 commits █▌░░░░░░░░░░░░░░░░░░░ 7.3% | |
🌆 Daytime 108 commits ███████▊░░░░░░░░░░░░░ 37.4% | |
🌃 Evening 111 commits ████████░░░░░░░░░░░░░ 38.4% | |
🌙 Night 49 commits ███▌░░░░░░░░░░░░░░░░░ 17.0% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script type="text/javascript" src="jquery/jquery-3.6.0.min.js"></script> | |
<script> | |
$(document).ready(function(){ | |
/* | |
* 기본 이벤트 걸기 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 쿠키 설정 | |
function setCookie(name, value, expiredays){ | |
var todayDate = new Date(); | |
todayDate.setDate( todayDate.getDate() + expiredays ); | |
document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";"; | |
} | |
// 쿠키 확인 | |
function getCookie(name) { | |
var nameOfCookie=name+"="; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*** | |
* 구구단 출력 | |
***/ | |
def Q_2739(): | |
dan = int(input()) | |
for i in range(1, 10): | |
print(dan, "*", i, "=", dan*i) | |
/*** | |
* 자연수 N이 주어졌을 때, N부터 1까지 한 줄에 하나씩 출력하는 프로그램을 작성하시오. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def Q_9498(): | |
score = int(input()) | |
if score >= 90: | |
print("A") | |
elif 80 <= score < 90: | |
print("B") | |
elif 70 <= score < 80: | |
print("C") | |
elif 60 <= score < 70: | |
print("D") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def string_bulit_in_fn(): | |
""" | |
문자열 내장함수 | |
:return: | |
""" | |
str = ' built In Function ' | |
str2 = '_' | |
print("str.count('i') : ", str.count('i')) | |
print("str.count('Fn') : ", str.count('Fn')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title> MSG Project</title> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<link rel="stylesheet" type="text/css" href="http://localhost/style.css"> | |
</head> | |
<body> | |
<header> |