mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-21 02:35:23 -04:00
Merge pull request #205 from hoijui/linkifyHeaderStyle
Allow to generate lower case header references through the config
This commit is contained in:
commit
7a27579589
5 changed files with 16 additions and 7 deletions
|
@ -164,11 +164,11 @@ export function renderTags (view) {
|
|||
}
|
||||
|
||||
function slugifyWithUTF8 (text) {
|
||||
// remove html tags and trim spaces
|
||||
// remove HTML tags and trim spaces
|
||||
let newText = S(text).trim().stripTags().s
|
||||
// replace all spaces in between to dashes
|
||||
// replace space between words with dashes
|
||||
newText = newText.replace(/\s+/g, '-')
|
||||
// slugify string to make it valid for attribute
|
||||
// slugify string to make it valid as an attribute
|
||||
newText = newText.replace(/([!"#$%&'()*+,./:;<=>?@[\\\]^`{|}~])/g, '')
|
||||
return newText
|
||||
}
|
||||
|
@ -833,7 +833,11 @@ const linkifyAnchors = (level, containingElement) => {
|
|||
if (header.getElementsByClassName('anchor').length === 0) {
|
||||
if (typeof header.id === 'undefined' || header.id === '') {
|
||||
// to escape characters not allow in css and humanize
|
||||
const id = slugifyWithUTF8(getHeaderContent(header))
|
||||
let id = slugifyWithUTF8(getHeaderContent(header))
|
||||
// to make compatible with GitHub, GitLab, Pandoc and many more
|
||||
if (window.linkifyHeaderStyle !== 'keep-case') {
|
||||
id = id.toLowerCase()
|
||||
}
|
||||
header.id = id
|
||||
}
|
||||
if (!(typeof header.id === 'undefined' || header.id === '')) {
|
||||
|
|
|
@ -5,4 +5,6 @@ window.version = '<%- version %>'
|
|||
|
||||
window.allowedUploadMimeTypes = <%- JSON.stringify(allowedUploadMimeTypes) %>
|
||||
|
||||
window.linkifyHeaderStyle = <%- JSON.stringify(linkifyHeaderStyle) %>
|
||||
|
||||
window.DROPBOX_APP_KEY = '<%- DROPBOX_APP_KEY %>'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue