parent
41784de9be
commit
9740db8685
2 changed files with 9 additions and 1 deletions
|
@ -205,7 +205,7 @@ const mfm = P.createLanguage({
|
||||||
hashtag: r =>
|
hashtag: r =>
|
||||||
P((input, i) => {
|
P((input, i) => {
|
||||||
const text = input.substr(i);
|
const text = input.substr(i);
|
||||||
const match = text.match(/^#([^\s\.,!\?#:]+)/i);
|
const match = text.match(/^#([^\s\.,!\?"#:]+)/i);
|
||||||
if (!match) return P.makeFailure(i, 'not a hashtag');
|
if (!match) return P.makeFailure(i, 'not a hashtag');
|
||||||
let hashtag = match[1];
|
let hashtag = match[1];
|
||||||
hashtag = removeOrphanedBrackets(hashtag);
|
hashtag = removeOrphanedBrackets(hashtag);
|
||||||
|
|
|
@ -365,6 +365,14 @@ describe('MFM', () => {
|
||||||
]);
|
]);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('ignore double quote', () => {
|
||||||
|
const tokens = analyze('#foo"');
|
||||||
|
assert.deepStrictEqual(tokens, [
|
||||||
|
leaf('hashtag', { hashtag: 'foo' }),
|
||||||
|
text('"'),
|
||||||
|
]);
|
||||||
|
});
|
||||||
|
|
||||||
it('allow including number', () => {
|
it('allow including number', () => {
|
||||||
const tokens = analyze('#foo123');
|
const tokens = analyze('#foo123');
|
||||||
assert.deepStrictEqual(tokens, [
|
assert.deepStrictEqual(tokens, [
|
||||||
|
|
Loading…
Reference in a new issue