n8n-nodes-notion-advanced 1.2.19-beta → 1.2.20-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1128,30 +1128,6 @@ class NotionAITool {
1128
1128
  return null;
1129
1129
  }
1130
1130
  },
1131
- // Strong/Bold: <strong>content</strong> or <b>content</b> (only as standalone)
1132
- {
1133
- regex: /(?:^|>|\s)<(strong|b)>(.*?)<\/(strong|b)>(?=<|$|\s)/gis,
1134
- blockCreator: (tag, content) => {
1135
- return {
1136
- type: 'paragraph',
1137
- paragraph: {
1138
- rich_text: NotionAITool.parseBasicMarkdown(`**${content.trim()}**`),
1139
- },
1140
- };
1141
- }
1142
- },
1143
- // Emphasis/Italic: <em>content</em> or <i>content</i> (only as standalone)
1144
- {
1145
- regex: /(?:^|>|\s)<(em|i)>(.*?)<\/(em|i)>(?=<|$|\s)/gis,
1146
- blockCreator: (tag, content) => {
1147
- return {
1148
- type: 'paragraph',
1149
- paragraph: {
1150
- rich_text: NotionAITool.parseBasicMarkdown(`*${content.trim()}*`),
1151
- },
1152
- };
1153
- }
1154
- },
1155
1131
  // Line breaks: <br/> or <br>
1156
1132
  {
1157
1133
  regex: /<br\s*\/?>/gis,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-notion-advanced",
3
- "version": "1.2.19-beta",
3
+ "version": "1.2.20-beta",
4
4
  "description": "Advanced n8n Notion nodes: Full-featured workflow node + AI Agent Tool for intelligent Notion automation with 25+ block types (BETA)",
5
5
  "scripts": {},
6
6
  "files": [