* feat: 支持 markdown 格式和图片 * perf: 重载的时候滚动条保持 * chore: version 2.5.2 * feat: 添加文字换行 * chore: 添加新封面 * chore: 更新 cover
9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
function includeCode(text: string | null | undefined) {
|
|
const regexp = /^(?:\s{4}|\t).+/gm
|
|
if (text?.includes(' = ') || text?.match(regexp))
|
|
return true
|
|
return false
|
|
}
|
|
|
|
export default includeCode
|