forked from FoundKeyGang/FoundKey
[MFM] Fix emoji syntax parsing
This commit is contained in:
parent
f5d53d784d
commit
600aea4dbb
2 changed files with 10 additions and 3 deletions
|
@ -9,7 +9,7 @@ export type TextElementEmoji = {
|
|||
};
|
||||
|
||||
export default function(text: string) {
|
||||
const match = text.match(/^:([a-zA-Z0-9+-_]+):/);
|
||||
const match = text.match(/^:([a-zA-Z0-9+-_]+?):/);
|
||||
if (!match) return null;
|
||||
const emoji = match[0];
|
||||
return {
|
||||
|
|
11
test/mfm.ts
11
test/mfm.ts
|
@ -180,10 +180,17 @@ describe('Text', () => {
|
|||
});
|
||||
|
||||
it('emoji', () => {
|
||||
const tokens = analyze(':cat:');
|
||||
const tokens1 = analyze(':cat:');
|
||||
assert.deepEqual([
|
||||
{ type: 'emoji', content: ':cat:', emoji: 'cat'}
|
||||
], tokens);
|
||||
], tokens1);
|
||||
|
||||
const tokens2 = analyze(':cat::cat::cat:');
|
||||
assert.deepEqual([
|
||||
{ type: 'emoji', content: ':cat:', emoji: 'cat'},
|
||||
{ type: 'emoji', content: ':cat:', emoji: 'cat'},
|
||||
{ type: 'emoji', content: ':cat:', emoji: 'cat'}
|
||||
], tokens2);
|
||||
});
|
||||
|
||||
it('block code', () => {
|
||||
|
|
Loading…
Reference in a new issue