Fix htmlToMfm (#3600)
This commit is contained in:
parent
9ee9cf8d81
commit
79ff5888fd
@ -43,7 +43,7 @@ export default function(html: string): string {
|
|||||||
if ((rel && rel.value.match('tag') !== null) || !href || href.value == txt) {
|
if ((rel && rel.value.match('tag') !== null) || !href || href.value == txt) {
|
||||||
text += txt;
|
text += txt;
|
||||||
// メンション
|
// メンション
|
||||||
} else if (txt.startsWith('@') && !rel || !rel.value.match(/^me /)) {
|
} else if (txt.startsWith('@') && !(rel && rel.value.match(/^me /))) {
|
||||||
const part = txt.split('@');
|
const part = txt.split('@');
|
||||||
|
|
||||||
if (part.length == 2) {
|
if (part.length == 2) {
|
||||||
|
Loading…
Reference in New Issue
Block a user