joplin-plugin-html-blocks 1.0.6 → 1.0.8

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.
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ <img src="images/icon128.png" width="96" align="right" alt="HTML Blocks icon">
2
+
1
3
  # HTML Blocks - a Joplin plugin
2
4
 
3
5
  Write styled HTML sections in your notes with a simple markdown fence. No HTML,
@@ -15,6 +17,21 @@ admonition-style callouts, twenty-two list styles, steps, timelines, stat tiles,
15
17
  progress bars, ratings, tables, pros and cons, FAQs, feature grids, chat
16
18
  transcripts, grids, banners, collapsible sections and more.
17
19
 
20
+ ## Screenshots
21
+
22
+ ![The block picker](screenshots/01-block-picker.png)
23
+
24
+ *The picker: filter 298 blocks by name, id, colour or theme, and insert one with
25
+ a click.*
26
+
27
+ ![Card blocks in the note viewer](screenshots/02-card-blocks.png)
28
+
29
+ *Cards in the note viewer - solid, outline, tinted, gradient and elevated.*
30
+
31
+ ![Checklists, stat tiles and grids](screenshots/03-lists-stats-grids.png)
32
+
33
+ *Checklists, stat tiles, badge rows, grids and key/value tables.*
34
+
18
35
  ## Installation
19
36
 
20
37
  Search for **HTML Blocks** in *Tools &rarr; Options &rarr; Plugins*, or install
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "joplin-plugin-html-blocks",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "Write styled HTML sections - cards, callouts, fancy lists, steps, timelines, grids and more - using a simple `!!! type` ... `!!!->` markdown fence.",
5
5
  "author": "madusanka",
6
6
  "scripts": {
7
7
  "blocks": "node tools/generate-blocks.js",
8
8
  "styles": "node tools/generate-styles.js",
9
+ "icons": "node tools/generate-icons.js",
9
10
  "manual": "node tools/generate-manual.js",
10
11
  "dist": "npm run blocks && npm run styles && webpack --env joplin-plugin-config=buildMain && webpack --env joplin-plugin-config=buildExtraScripts && webpack --env joplin-plugin-config=createArchive",
11
12
  "prepare": "npm run dist",
@@ -7,7 +7,7 @@
7
7
  "desktop",
8
8
  "mobile"
9
9
  ],
10
- "version": "1.0.6",
10
+ "version": "1.0.8",
11
11
  "name": "HTML Blocks",
12
12
  "description": "Write styled HTML sections - cards, callouts, fancy lists, steps, timelines, grids and more - using a simple `!!! type` ... `!!!->` markdown fence.",
13
13
  "author": "madusanka",
@@ -25,9 +25,30 @@
25
25
  "viewer",
26
26
  "appearance"
27
27
  ],
28
- "screenshots": [],
29
- "icons": {},
30
- "promo_tile": {},
31
- "_publish_hash": "sha256:990d5ec766ddae0ef129bf5c4818809d1cfdd66325f966b35ef2a75649db2683",
32
- "_publish_commit": "main:a2e1c8468acbe7994c44a0ab5b1b1ad3b5c3d597"
28
+ "screenshots": [
29
+ {
30
+ "src": "screenshots/01-block-picker.png",
31
+ "label": "The block picker: filter 298 blocks by name, id, colour or theme and insert one with a click"
32
+ },
33
+ {
34
+ "src": "screenshots/02-card-blocks.png",
35
+ "label": "Card blocks in the note viewer - solid, outline, tinted, gradient and elevated styles"
36
+ },
37
+ {
38
+ "src": "screenshots/03-lists-stats-grids.png",
39
+ "label": "Checklists, stat tiles, badge rows, grids and key/value tables"
40
+ }
41
+ ],
42
+ "icons": {
43
+ "16": "images/icon16.png",
44
+ "32": "images/icon32.png",
45
+ "48": "images/icon48.png",
46
+ "128": "images/icon128.png"
47
+ },
48
+ "promo_tile": {
49
+ "src": "images/promo_tile.png",
50
+ "label": "HTML Blocks - styled cards, callouts and lists from a simple markdown fence"
51
+ },
52
+ "_publish_hash": "sha256:de6cd3cd0c189bdf1c1357c438ed7806aa5e5ce003cee06fd3db74fd6afeaab4",
53
+ "_publish_commit": "main:f78c168a1dd686094bf53dda74a7ab73c98c7487"
33
54
  }