Skip to content

Commit efdb43a

Browse files
authored
Merge pull request #234 from niceplugin/examples/markdown
예제 번역: /examples/markdown
2 parents eaf300b + 68ca777 commit efdb43a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

ko-KR/.vitepress/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,10 +450,10 @@ export const sidebar = {
450450
]
451451
},
452452
{
453-
text: 'Practical',
453+
text: '실용적',
454454
items: [
455455
{
456-
text: 'Markdown Editor',
456+
text: 'Markdown 편집기',
457457
link: '/examples/#markdown'
458458
},
459459
{

ko-KR/src/examples/src/markdown/App/composition.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ref, computed } from 'vue'
44

55
export default {
66
setup() {
7-
const input = ref('# hello')
7+
const input = ref('# 반가워요!')
88

99
const output = computed(() => marked(input.value))
1010

ko-KR/src/examples/src/markdown/App/options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { debounce } from 'lodash-es'
33

44
export default {
55
data: () => ({
6-
input: '# hello'
6+
input: '# 반가워요!'
77
}),
88
computed: {
99
output() {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
A simple markdown editor.
1+
심플한 마크다운 편집기 입니다.

0 commit comments

Comments
 (0)