embedex 1.6.49 → 1.6.51

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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -42,7 +42,7 @@ npm install --global embedex
42
42
  2. In the destination file, add an `<embedex source="..."></embedex>` tag that includes the source file's path.
43
43
  - `./README.md`:
44
44
 
45
- ```
45
+ ```markdown
46
46
  # greeter
47
47
 
48
48
  Greets a person by name.
@@ -70,7 +70,7 @@ npm install --global embedex
70
70
  4. The source is embedded!
71
71
  - `./README.md`:
72
72
 
73
- ````
73
+ ````markdown
74
74
  # greeter
75
75
 
76
76
  Greets a person by name.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "embedex",
3
3
  "description": "Embed shared text and code snippets from source files into destination files.",
4
- "version": "1.6.49",
4
+ "version": "1.6.51",
5
5
  "bin": {
6
6
  "embedex": "./src/bin/cli.js"
7
7
  },