mirror of
https://github.com/doocs/md.git
synced 2024-11-24 11:00:33 +08:00
feat: support for indent options (#430)
This commit is contained in:
parent
e7f01b640a
commit
85f7f11429
@ -379,6 +379,31 @@ function customStyle() {
|
|||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="space-y-2">
|
||||||
|
<h2>段落首行缩进</h2>
|
||||||
|
<div class="grid grid-cols-5 justify-items-center gap-2">
|
||||||
|
<Button
|
||||||
|
class="w-full"
|
||||||
|
variant="outline"
|
||||||
|
:class="{
|
||||||
|
'border-black dark:border-white': store.isUseIndent,
|
||||||
|
}"
|
||||||
|
@click="!store.isUseIndent && store.useIndentChanged()"
|
||||||
|
>
|
||||||
|
开启
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
class="w-full"
|
||||||
|
variant="outline"
|
||||||
|
:class="{
|
||||||
|
'border-black dark:border-white': !store.isUseIndent,
|
||||||
|
}"
|
||||||
|
@click="store.isUseIndent && store.useIndentChanged()"
|
||||||
|
>
|
||||||
|
关闭
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="space-y-2">
|
<div class="space-y-2">
|
||||||
<h2>自定义 CSS 面板</h2>
|
<h2>自定义 CSS 面板</h2>
|
||||||
<div class="grid grid-cols-5 justify-items-center gap-2">
|
<div class="grid grid-cols-5 justify-items-center gap-2">
|
||||||
|
@ -28,6 +28,10 @@ export const useStore = defineStore(`store`, () => {
|
|||||||
const isCiteStatus = useStorage(`isCiteStatus`, false)
|
const isCiteStatus = useStorage(`isCiteStatus`, false)
|
||||||
const toggleCiteStatus = useToggle(isCiteStatus)
|
const toggleCiteStatus = useToggle(isCiteStatus)
|
||||||
|
|
||||||
|
// 是否开启段落首行缩进
|
||||||
|
const isUseIndent = useStorage(addPrefix(`use_indent`), true)
|
||||||
|
const toggleUseIndent = useToggle(isUseIndent)
|
||||||
|
|
||||||
const output = ref(``)
|
const output = ref(``)
|
||||||
|
|
||||||
// 文本字体
|
// 文本字体
|
||||||
@ -133,12 +137,13 @@ export const useStore = defineStore(`store`, () => {
|
|||||||
theme: customCssWithTemplate(css2json(getCurrentTab().content), primaryColor.value, customizeTheme(themeMap[theme.value], { fontSize: fontSizeNumber.value, color: primaryColor.value })),
|
theme: customCssWithTemplate(css2json(getCurrentTab().content), primaryColor.value, customizeTheme(themeMap[theme.value], { fontSize: fontSizeNumber.value, color: primaryColor.value })),
|
||||||
fonts: fontFamily.value,
|
fonts: fontFamily.value,
|
||||||
size: fontSize.value,
|
size: fontSize.value,
|
||||||
|
isUseIndent: isUseIndent.value,
|
||||||
})
|
})
|
||||||
|
|
||||||
// 更新编辑器
|
// 更新编辑器
|
||||||
const editorRefresh = () => {
|
const editorRefresh = () => {
|
||||||
codeThemeChange()
|
codeThemeChange()
|
||||||
renderer.reset({ status: isCiteStatus.value, legend: legend.value })
|
renderer.reset({ status: isCiteStatus.value, legend: legend.value, isUseIndent: isUseIndent.value })
|
||||||
let outputTemp = marked.parse(editor.value!.getValue()) as string
|
let outputTemp = marked.parse(editor.value!.getValue()) as string
|
||||||
|
|
||||||
// 去除第一行的 margin-top
|
// 去除第一行的 margin-top
|
||||||
@ -318,6 +323,10 @@ export const useStore = defineStore(`store`, () => {
|
|||||||
toggleCiteStatus()
|
toggleCiteStatus()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const useIndentChanged = withAfterRefresh(() => {
|
||||||
|
toggleUseIndent()
|
||||||
|
})
|
||||||
|
|
||||||
// 导出编辑器内容为 HTML,并且下载到本地
|
// 导出编辑器内容为 HTML,并且下载到本地
|
||||||
const exportEditorContent2HTML = () => {
|
const exportEditorContent2HTML = () => {
|
||||||
exportHTML()
|
exportHTML()
|
||||||
@ -389,6 +398,8 @@ export const useStore = defineStore(`store`, () => {
|
|||||||
isMacCodeBlock,
|
isMacCodeBlock,
|
||||||
isCiteStatus,
|
isCiteStatus,
|
||||||
citeStatusChanged,
|
citeStatusChanged,
|
||||||
|
isUseIndent,
|
||||||
|
useIndentChanged,
|
||||||
|
|
||||||
output,
|
output,
|
||||||
editor,
|
editor,
|
||||||
|
@ -20,6 +20,7 @@ export interface IOpts {
|
|||||||
theme: Theme
|
theme: Theme
|
||||||
fonts: string
|
fonts: string
|
||||||
size: string
|
size: string
|
||||||
|
isUseIndent: boolean
|
||||||
legend?: string
|
legend?: string
|
||||||
status?: boolean
|
status?: boolean
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import type { ExtendedProperties, IOpts, ThemeStyles } from '@/types'
|
import type { ExtendedProperties, IOpts, ThemeStyles } from '@/types'
|
||||||
import type { PropertiesHyphen } from 'csstype'
|
import type { PropertiesHyphen } from 'csstype'
|
||||||
import type { Renderer, RendererObject, Tokens } from 'marked'
|
import type { Renderer, RendererObject, Tokens } from 'marked'
|
||||||
import { toMerged } from 'es-toolkit'
|
import { cloneDeep, toMerged } from 'es-toolkit'
|
||||||
import hljs from 'highlight.js'
|
import hljs from 'highlight.js'
|
||||||
|
|
||||||
import { marked } from 'marked'
|
import { marked } from 'marked'
|
||||||
@ -10,12 +10,20 @@ import { MDKatex } from './MDKatex'
|
|||||||
|
|
||||||
marked.use(MDKatex({ nonStandard: true }))
|
marked.use(MDKatex({ nonStandard: true }))
|
||||||
|
|
||||||
function buildTheme({ theme, fonts, size }: IOpts): ThemeStyles {
|
function buildTheme({ theme: _theme, fonts, size, isUseIndent }: IOpts): ThemeStyles {
|
||||||
|
const theme = cloneDeep(_theme)
|
||||||
const base = toMerged(theme.base, {
|
const base = toMerged(theme.base, {
|
||||||
'font-family': fonts,
|
'font-family': fonts,
|
||||||
'font-size': size,
|
'font-size': size,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if (isUseIndent) {
|
||||||
|
theme.block.p = {
|
||||||
|
'text-indent': `2em`,
|
||||||
|
...theme.block.p,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const mergeStyles = (styles: Record<string, PropertiesHyphen>): Record<string, ExtendedProperties> =>
|
const mergeStyles = (styles: Record<string, PropertiesHyphen>): Record<string, ExtendedProperties> =>
|
||||||
Object.fromEntries(
|
Object.fromEntries(
|
||||||
Object.entries(styles).map(([ele, style]) => [ele, toMerged(base, style)]),
|
Object.entries(styles).map(([ele, style]) => [ele, toMerged(base, style)]),
|
||||||
|
Loading…
Reference in New Issue
Block a user