1
0

Merge branch 'develop' into future-2024-05-31

This commit is contained in:
dakkar
2024-06-13 09:06:24 +01:00
44 changed files with 223 additions and 79 deletions
+11 -4
View File
@@ -132,9 +132,18 @@ export class MfmService {
case 'h1':
{
text += '【';
text += '**【';
appendChildren(node.childNodes);
text += '】\n';
text += '】**\n';
break;
}
case 'h2':
case 'h3':
{
text += '**';
appendChildren(node.childNodes);
text += '**\n';
break;
}
@@ -203,8 +212,6 @@ export class MfmService {
}
case 'p':
case 'h2':
case 'h3':
case 'h4':
case 'h5':
case 'h6':
@@ -30,8 +30,9 @@ export const meta = {
prohibitMoved: true,
limit: {
duration: ms('1minute'),
max: 5,
duration: ms('1hour'),
max: 300,
minInterval: ms('1sec'),
},
kind: 'write:notes',