SNDiM
About

A post of Markdown elements

Published

- 5 min read


This is a H2 Heading

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim 1ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure 2dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

사용자 계정 컨트롤 더 알아보기

메뉴라벨을 클릭하면 버튼을 클릭 1ㄹborder-radius: 2px; 을 선택 윈도우에서는 메시지라벨 1ㄴㅇㄴ

I am title as caption
파일 이름입니다
파일이름입니다

This is a H3 Heading

This is a H3 Heading

This is a H4 Heading

This is a H4 Heading

This is a H4 Heading

This is a H5 Heading
This is a H6 Heading

Horizontal Rules




Emphasis

This is bold text

This is italic text

Strikethrough

Quotes

”Double quotes” and ‘single quotes’

Blockquotes

Blockquotes can also be nested…

…by using additional greater-than signs right next to each other…

References

An example containing a clickable reference1 with a link to the source.

Second example containing a reference2 with a link to the source.

If you check out this example in src/content/post/markdown-elements/index.md, you’ll notice that the references and the heading “Footnotes” are added to the bottom of the page via the remark-rehype plugin.

Lists

Unordered

  • Create a list by starting a line with +, -, or *
  • Sub-lists are made by indenting 2 spaces:
    • Marker character change forces new list start:
      • Ac tristique libero volutpat at
      • Facilisis in pretium nisl aliquet
      • Nulla volutpat aliquam velit
  • Very easy!

Ordered

  1. Lorem ipsum dolor sit amet

  2. Consectetur adipiscing elit

  3. Integer molestie lorem at massa

  4. You can use sequential numbers…

  5. …or keep all the numbers as 1.

Start numbering with offset:

  1. foo
  2. bar

Code

Inline code

Indented code

// Some comments
line 1 of code
line 2 of code
line 3 of code

Block code “fences”

Sample text here...

Syntax highlighting

var foo = function (bar) {
return bar++
}
console.log(foo(5))

Expressive code examples

Adding a title

file.js
console.log('Title example')

A bash terminal

Terminal window
echo "A base terminal example"

Highlighting code lines

line-markers.js
function demo() {
console.log('this line is marked as deleted')
// This line and the next one are marked as inserted
console.log('this is the second inserted line')
return 'this line uses the neutral default marker type'
}

sdsdd

sd;fklds
import { defineConfig } from 'astro/config'
import astroExpressiveCode from 'astro-expressive-code'
export default defineConfig({
integrations: [
astroExpressiveCode({
// You can optionally override the plugin's default settings here optionally override the plugin's default settings here optionally override the plugin's default settings here optionally override the plugin's default settings here optionally override the plugin's default settings here
frames: {
// Example: Hide the "Copy to clipboard" button
showCopyToClipboardButton: false
},
styleOverrides: {
// You can optionally override the plugin's default styles here
frames: {
shadowColor: '#124'
}
}
})
]
})

wrap=false

import { defineConfig } from 'astro/config'
import astroExpressiveCode from 'astro-expressive-code'
export default defineConfig({
integrations: [
astroExpressiveCode({
// You can optionally override the plugin's default settings here optionally override the plugin's default settings here optionally override the plugin's default settings here optionally override the plugin's default settings here optionally override the plugin's default settings here
frames: {
// Example: Hide the "Copy to clipboard" button
showCopyToClipboardButton: false
},
styleOverrides: {
// You can optionally override the plugin's default styles here
frames: {
shadowColor: '#124'
}
}
})
]
})

이 페이지는 특성상 비정기적으로 내용이 업데이트 되고 관리됩니다. 그리고 상황에 따라 접속되는 링크의 서브 도메인 주소가 변경될 수 있으며, 변경 시 별도 안내한 안내 방식으로 이를 고지합니다.

이 페이지는 특성상 비정기적으로 내용이 업데이트 되고 관리됩니다. 그리고 상황에 따라 접속되는 링크의 서브 도메인 주소가 변경될 수 있으며, 변경 시 별도 안내한 안내 방식으로 이를 고지합니다.

[!NOTE] This is a note callout

[!WARNING] This is a warning callout

[!DANGER]This is a danger callout

:::tip Expressive Code is already included in Starlight. You’re done! 🎉 :::

:::caution[Deprecated] Efficient multi-theme support is now a core feature, so the theme option was deprecated in favor of the new array themes. Please migrate your existing config to use themes and ensure it is an array. If you only need a single theme, your themes array can contain just this one theme. However, please consider the benefits of providing multiple themes. See the themes option for more details. :::

wrap

import { defineConfig } from 'astro/config'
import astroExpressiveCode from 'astro-expressive-code'
export default defineConfig({
integrations: [
astroExpressiveCode({
// You can optionally override the plugin's default settings here optionally override the plugin's default settings here optionally override the plugin's default settings here optionally override the plugin's default settings here optionally override the plugin's default settings here
frames: {
// Example: Hide the "Copy to clipboard" button
showCopyToClipboardButton: false
},
styleOverrides: {
// You can optionally override the plugin's default styles here
frames: {
shadowColor: '#124'
}
}
})
]
})

Expressive Code can do a ton more than shown here, and includes a lot of customisation.

Tables

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

Right aligned columns

OptionDescription
datapath to data files to supply the data that will be passed into templates.
engineengine to be used for processing templates. Handlebars is the default.
extextension to be used for dest files.

Images

Image in the same folder: src/content/post/markdown-elements/logo.png

Astro theme cactus logo

Content from markdown-it

Footnotes

  1. Reference first footnote with a return to content link.

  2. Second reference with a link.

관련 글

댓글

댓글로 소통 하세요. 에디터는 마크다운 문법을 사용 할 수 있습니다. 누구에게도 도움이 되지 않는 댓글은 추후 삭제 됩니다.