๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ

ํ‹ฐ์Šคํ† ๋ฆฌ ์ฝ”๋“œ๋ธ”๋Ÿญ highlight.js ํ…Œ๋งˆ, line number, ์Šคํฌ๋กค, ํฐํŠธ ์ ์šฉํ•˜๊ธฐ

๋ฐ˜์‘ํ˜•

 

HTML

  <!-- ์ฝ”๋“œ๋ธ”๋Ÿญ ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ -->
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/styles/github-dark.min.css"> 
  <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.3.1/highlight.min.js"></script>
  
  <!-- ์ฝ”๋“œ ๋ธ”๋Ÿญ ๋ผ์ธ ๋„˜๋ฒ„ --> 
  <script src="//cdnjs.cloudflare.com/ajax/libs/highlightjs-line-numbers.js/2.8.0/highlightjs-line-numbers.min.js"></script>
  <script>
    hljs.initHighlightingOnLoad();
    hljs.initLineNumbersOnLoad();
  </script>

 

CSS

 

ํฐํŠธ & ์‚ฌ์ด์ฆˆ, ์Šคํฌ๋กค ์ถ”๊ฐ€ ๋“ฑ~

code {
	font-family: 'Consolas', 'Nanum Gothic Coding';
	font-size: 13px;
	white-space: pre;
	max-width: 850px;
	max-height: 600px;
	overflow: auto !important;
}

 

line number

/* for block of numbers */
.hljs-ln-numbers {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: center;
	color: #ccc;
	vertical-align: top;
	padding-right: 5px !important;

	/* your custom style here */
}

/* for block of code */
.hljs-ln-code {
	padding-left: 10px !important;
}

 

๋ชจ๋ฐ”์ผ์—์„œ ๋ผ์ธ๋„˜๋ฒ„ ๋„“์ด๊ฐ€ ์ด์ƒํ•ด์„œ  /* Media Screen - Mobie */ ์—์„œ ์ด ๋ถ€๋ถ„ ์ฃผ์„์ฒ˜๋ฆฌํ•จ

	.entry-content table {
		width: 680px;
		/* table-layout: fixed; */
	}

 

 

 

 

์ „์ฒด ํฐํŠธ ๋ณ€๊ฒฝํ•˜๊ธฐ

/* Type Selector Reset */
body {
	font-weight: 400;
	font-family: 'Noto Sans KR', sans-serif;
	font-size: 1em;
	line-height: 1.25;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}

 

๋ณธ๋ฌธ ์ค„๊ฐ„๊ฒฉ ์กฐ์ ˆ line-height

.entry-content p {
	margin-bottom: 24px;
	font-size: 0.9375em;
	/* line-height: 1.6; */
	line-height: 2;
	color: #666;
}

 

 

 

 

 

 

 

 

 

 

 

์ฐธ๊ณ 

https://toproot.tistory.com/29

 

[T-Story] ์ฝ”๋“œ๋ธ”๋Ÿญ ํ…Œ๋งˆ, ์Šคํฌ๋กค, ๋ผ์ธ๋„˜๋ฒ„ ์ถ”๊ฐ€ํ•˜๊ธฐ(์˜ค๋””์„ธ์ด ํ…Œ๋งˆ)

๐Ÿง‘๐Ÿป‍๐Ÿ’ป ํ‹ฐ์Šคํ† ๋ฆฌ์˜ ๋ฐ‹๋ฐ‹ํ•œ ์ฝ”๋“œ๋ธ”๋Ÿญ์„ ๋œฏ์–ด๊ณ ์ณ๋ณด์ž! ๊ธฐ์กด์˜ ํ‹ฐ์Šคํ† ๋ฆฌ ์ฝ”๋“œ๋ธ”๋Ÿญ์€ ํšŒ์ƒ‰์˜ ๋ฐ‹๋ฐ‹ํ•œ ๋ธ”๋Ÿญ์ด์—ˆ๊ธฐ์—.. ํ”„๋กœ ๊ฐœ๋ฐœ์ž ๊ฐ™์€ ์ฝ”๋“œ๋ธ”๋Ÿญ์„ ๋งŒ๋“ค์–ด๋ณด๊ฒ ์Šต๋‹ˆ๋‹ค. ์ฃผ์˜! ์‹œ์ž‘ํ•˜๊ธฐ์ „์— ํ”Œ

toproot.tistory.com

 

๋ฐ˜์‘ํ˜•