node-red-contrib-markdown-note 1.0.1 β†’ 1.0.2

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.
@@ -0,0 +1,55 @@
1
+ [
2
+ {
3
+ "id": "4f7d74f95361cf12",
4
+ "type": "tab",
5
+ "label": "Flow 1",
6
+ "disabled": false,
7
+ "info": "",
8
+ "env": []
9
+ },
10
+ {
11
+ "id": "1e6208f49f48c149",
12
+ "type": "comment",
13
+ "z": "4f7d74f95361cf12",
14
+ "name": "This is a comment. If you open it, you can see more.",
15
+ "info": "If you hover over it you can see more information.",
16
+ "x": 1270,
17
+ "y": 100,
18
+ "wires": []
19
+ },
20
+ {
21
+ "id": "b733d4e9097687f6",
22
+ "type": "note",
23
+ "z": "4f7d74f95361cf12",
24
+ "content": "# This is a note! πŸ“\nA node for displaying **Markdown-formatted notes** in Node-RED. \nUnlike a comment, a note always displays its full content.\nUse notes to document your flows, provide instructions, or communicate key information.\n\n## Headings\n# Heading 1\n## Heading 2\n\n## Text Formatting\n**Bold text** \n*Italic text* \n~~Strikethrough~~ \n`Inline code`\n\n## Lists\n- Bullet item \n- Another bullet item\n\n1. Numbered item \n2. Second numbered item\n\n> Notes are ideal for explaining node behavior, flow logic, or key settings.\n\nNotes even have emojis! βš™οΈβœοΈπŸ’»βž‘οΈπŸ”„πŸ“Š",
25
+ "x": 1260,
26
+ "y": 434,
27
+ "wires": []
28
+ },
29
+ {
30
+ "id": "907e213304ab42cf",
31
+ "type": "note",
32
+ "z": "4f7d74f95361cf12",
33
+ "content": "# ⚠️ Warning to Future Self\n**DO NOT DELETE THIS NODE.**\nThe guy that trained me said don't ever touch it.\n\n### Why does this work?\n* I don't know. πŸ€·β€β™‚οΈ\n* You don't know.\n* Just let it be.",
34
+ "x": 1480,
35
+ "y": 861,
36
+ "wires": []
37
+ },
38
+ {
39
+ "id": "f36ce0deb08b12ba",
40
+ "type": "note",
41
+ "z": "4f7d74f95361cf12",
42
+ "content": "# πŸ—ΊοΈ Project Roadmap\n\nThe timeline for this flow's perfection:\n\n* [x] Hack it together at 2AM β˜•\n* [ ] Refactor code (Scheduled for 2035)\n* [ ] Write documentation (lol) 🀣\n* [ ] ~~Fix that one bug~~ *It's a feature now*\n\n*Current Status: It works on my machine.* πŸ–₯️",
43
+ "x": 1090,
44
+ "y": 877,
45
+ "wires": []
46
+ },
47
+ {
48
+ "id": "c4d8050f9f11d914",
49
+ "type": "global-config",
50
+ "env": [],
51
+ "modules": {
52
+ "node-red-contrib-markdown-note": "1.0.1"
53
+ }
54
+ }
55
+ ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-red-contrib-markdown-note",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A Node-RED node for displaying markdown notes as annotations",
5
5
  "keywords": [
6
6
  "node-red",
@@ -22,7 +22,8 @@
22
22
  "markdown.html",
23
23
  "package.json",
24
24
  "README.md",
25
- "LICENSE"
25
+ "LICENSE",
26
+ "examples"
26
27
  ],
27
28
  "node-red": {
28
29
  "version": ">=3.0.0",