fix: fix html style of glitch-soc markdown content (#1350)

remove-nav-key
Nolan Lawson 2019-07-21 15:31:17 -07:00 zatwierdzone przez GitHub
rodzic 53f0fdf1a8
commit 6fafe19454
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
3 zmienionych plików z 14 dodań i 9 usunięć

Wyświetl plik

@ -0,0 +1,10 @@
// Glitch Social can have statuses that just contain blockquote/ol/ul, no p
const STARTING_TAG_REGEX = /^<(?:p|blockquote|ol|ul)>/i
export function massageStatusPlainText (text) {
// GNU Social and Pleroma don't add <p> tags, so wrap them
if (text && !STARTING_TAG_REGEX.test(text)) {
text = `<p>${text}</p>`
}
return text
}

Wyświetl plik

@ -1,12 +1,9 @@
import { emojifyText } from './emojifyText'
import { massageStatusPlainText } from './massageStatusPlainText'
export function massageUserText (text, emojis, $autoplayGifs) {
text = text || ''
text = emojifyText(text, emojis, $autoplayGifs)
// GNU Social and Pleroma don't add <p> tags
if (text && !text.startsWith('<p>')) {
text = `<p>${text}</p>`
}
text = massageStatusPlainText(text)
return text
}

Wyświetl plik

@ -1,4 +1,5 @@
import { mark, stop } from './marks'
import { massageStatusPlainText } from './massageStatusPlainText'
let domParser = process.browser && new DOMParser()
@ -37,10 +38,7 @@ export function statusHtmlToPlainText (html, mentions) {
return ''
}
mark('statusHtmlToPlainText')
// GNU Social and Pleroma don't add <p> tags
if (!html.startsWith('<p>')) {
html = `<p>${html}</p>`
}
html = massageStatusPlainText(html)
let doc = domParser.parseFromString(html, 'text/html')
massageMentions(doc, mentions)
let res = innerTextRetainingNewlines(doc)