heading-case 0.0.0 → 0.0.1
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 +2 -0
- package/bin.js +4 -0
- package/dist/dict.d.ts +1 -0
- package/dist/index.d.ts +4 -1
- package/dist/index.js +2995 -1
- package/package.json +9 -4
- package/dist/index.cjs +0 -7
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# heading-case
|
|
2
2
|
|
|
3
|
+
Format page titles and section headings in markdown files to use sentence-style capitalization.
|
|
4
|
+
|
|
3
5
|
<p>
|
|
4
6
|
<a href="https://npmjs.com/package/heading-case">
|
|
5
7
|
<img src="https://img.shields.io/npm/v/heading-case?style=flat-square&colorA=564341&colorB=EDED91" alt="npm version" />
|
package/bin.js
ADDED
package/dist/dict.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const dict: string[];
|
package/dist/index.d.ts
CHANGED