mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-15 06:35:20 -07:00
Fix periods breaking rendered pages
This commit is contained in:
parent
d5ae67a792
commit
dad8f955d4
1 changed files with 4 additions and 2 deletions
|
|
@ -88,7 +88,8 @@ export default async function () {
|
|||
if (isHeading && token.type === 'inline') {
|
||||
sectionTitle = token.content
|
||||
sectionSlug = slugify(token.content, {
|
||||
lower: true
|
||||
lower: true,
|
||||
strict: true
|
||||
})
|
||||
|
||||
// appList[sectionSlug] = []
|
||||
|
|
@ -103,7 +104,8 @@ export default async function () {
|
|||
const [ name, url ] = link.substring(1, link.length-1).split('](')
|
||||
|
||||
const appSlug = slugify(name, {
|
||||
lower: true
|
||||
lower: true,
|
||||
strict: true
|
||||
})
|
||||
|
||||
let status = 'unknown'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue