mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-24 20:55:51 +10:00
57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
exports.normalizeHeadTag = tag => {
|
|
if (typeof tag === 'string') {
|
|
tag = [tag]
|
|
}
|
|
const tagName = tag[0]
|
|
return {
|
|
tagName,
|
|
attributes: tag[1] || {},
|
|
innerHTML: tag[2] || '',
|
|
closeTag: !(tagName === 'meta' || tagName === 'link')
|
|
}
|
|
}
|
|
|
|
exports.applyUserWebpackConfig = function (userConfig, config, isServer) {
|
|
const merge = require('webpack-merge')
|
|
if (typeof userConfig === 'object') {
|
|
return merge(config, userConfig)
|
|
}
|
|
if (typeof userConfig === 'function') {
|
|
const res = userConfig(config, isServer)
|
|
if (res && typeof res === 'object') {
|
|
return merge(config, res)
|
|
}
|
|
}
|
|
return config
|
|
}
|
|
|
|
exports.inferTitle = function (frontmatter) {
|
|
if (frontmatter.title) {
|
|
return frontmatter.title
|
|
}
|
|
const match = frontmatter.__content.trim().match(/^#+\s+(.*)/)
|
|
if (match) {
|
|
return match[1]
|
|
}
|
|
}
|
|
|
|
exports.extractHeaders = (file, include = []) => {
|
|
const fs = require('fs')
|
|
const md = require('./markdown')({})
|
|
const S = require('string')
|
|
const content = fs.readFileSync(file, 'utf-8')
|
|
const tokens = md.parse(content)
|
|
|
|
const res = []
|
|
tokens.forEach((t, i) => {
|
|
if (t.type === 'heading_open' && include.includes(t.tag)) {
|
|
const title = tokens[i + 1].content
|
|
res.push({
|
|
title,
|
|
slug: S(title).slugify()
|
|
})
|
|
}
|
|
})
|
|
return res
|
|
}
|