Skip to content

Commit ca6217f

Browse files
jaydenserictmcw
authored andcommitted
feat: Semantic markdown headings (#1087)
- Previously, headers were displayed using `p` and `strong` tags. This is semantically incorrect, and would cause subheadings to display larger than headings for nested sections on platforms such as Github. - “Parameters”, “Properties”, and “Examples” now render as headings with a dynamic level greater than the heading they are nested under. BREAKING CHANGE: changes Markdown output
1 parent 12c55fe commit ca6217f

File tree

5 files changed

+339
-210
lines changed

5 files changed

+339
-210
lines changed

__tests__/__snapshots__/bin-readme.js.snap

+12-6
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,15 @@ exports[`readme autodetection of different filenames updates readme.markdown 1`]
1010
### Table of Contents
1111
1212
- [foo](#foo)
13+
- [Parameters](#parameters)
1314
- [bar](#bar)
15+
- [Parameters](#parameters-1)
1416
1517
## foo
1618
1719
A function with documentation.
1820
19-
**Parameters**
21+
### Parameters
2022
2123
- \`a\` {string} blah
2224
@@ -26,7 +28,7 @@ Returns **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/G
2628
2729
A second function with docs
2830
29-
**Parameters**
31+
### Parameters
3032
3133
- \`b\`
3234
@@ -44,13 +46,15 @@ exports[`readme command --readme-file 1`] = `
4446
### Table of Contents
4547
4648
- [foo](#foo)
49+
- [Parameters](#parameters)
4750
- [bar](#bar)
51+
- [Parameters](#parameters-1)
4852
4953
## foo
5054
5155
A function with documentation.
5256
53-
**Parameters**
57+
### Parameters
5458
5559
- \`a\` {string} blah
5660
@@ -60,7 +64,7 @@ Returns **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/G
6064
6165
A second function with docs
6266
63-
**Parameters**
67+
### Parameters
6468
6569
- \`b\`
6670
@@ -78,13 +82,15 @@ exports[`readme command updates README.md 1`] = `
7882
### Table of Contents
7983
8084
- [foo](#foo)
85+
- [Parameters](#parameters)
8186
- [bar](#bar)
87+
- [Parameters](#parameters-1)
8288
8389
## foo
8490
8591
A function with documentation.
8692
87-
**Parameters**
93+
### Parameters
8894
8995
- \`a\` {string} blah
9096
@@ -94,7 +100,7 @@ Returns **[number](https://developer.mozilla.org/docs/Web/JavaScript/Reference/G
94100
95101
A second function with docs
96102
97-
**Parameters**
103+
### Parameters
98104
99105
- \`b\`
100106

__tests__/__snapshots__/bin.js.snap

+95-71
Original file line numberDiff line numberDiff line change
@@ -1772,57 +1772,65 @@ exports[`build --document-exported 1`] = `
17721772
- [z][1]
17731773
- [zMethod][2]
17741774
- [x][3]
1775-
- [Class][4]
1776-
- [classMethod][5]
1777-
- [classGetter][6]
1778-
- [classSetter][7]
1779-
- [staticMethod][8]
1780-
- [staticGetter][9]
1781-
- [staticSetter][10]
1782-
- [T5][11]
1783-
- [y2Default][12]
1784-
- [y4][13]
1785-
- [object][14]
1786-
- [method][15]
1787-
- [getter][16]
1788-
- [setter][17]
1789-
- [prop][18]
1790-
- [func][19]
1791-
- [f1][20]
1792-
- [f3][21]
1793-
- [T][22]
1794-
- [T2][23]
1795-
- [T4][24]
1796-
- [f4][25]
1797-
- [o1][26]
1798-
- [om1][27]
1799-
- [f5][28]
1800-
- [o2][29]
1801-
- [om2][30]
1775+
- [Parameters][4]
1776+
- [Class][5]
1777+
- [Parameters][6]
1778+
- [classMethod][7]
1779+
- [classGetter][8]
1780+
- [classSetter][9]
1781+
- [Parameters][10]
1782+
- [staticMethod][11]
1783+
- [staticGetter][12]
1784+
- [staticSetter][13]
1785+
- [Parameters][14]
1786+
- [T5][15]
1787+
- [y2Default][16]
1788+
- [y4][17]
1789+
- [Parameters][18]
1790+
- [object][19]
1791+
- [method][20]
1792+
- [getter][21]
1793+
- [setter][22]
1794+
- [Parameters][23]
1795+
- [prop][24]
1796+
- [func][25]
1797+
- [f1][26]
1798+
- [f3][27]
1799+
- [T][28]
1800+
- [T2][29]
1801+
- [T4][30]
1802+
- [f4][31]
1803+
- [Parameters][32]
1804+
- [o1][33]
1805+
- [om1][34]
1806+
- [f5][35]
1807+
- [Parameters][36]
1808+
- [o2][37]
1809+
- [om2][38]
18021810
18031811
## z
18041812
18051813
### zMethod
18061814
18071815
## x
18081816
1809-
**Parameters**
1817+
### Parameters
18101818
18111819
- \`yparam\`
18121820
18131821
## Class
18141822
1815-
**Parameters**
1823+
### Parameters
18161824
1817-
- \`a\` **[string][31]**
1825+
- \`a\` **[string][39]**
18181826
18191827
### classMethod
18201828
18211829
### classGetter
18221830
18231831
### classSetter
18241832
1825-
**Parameters**
1833+
#### Parameters
18261834
18271835
- \`v\`
18281836
@@ -1832,23 +1840,23 @@ exports[`build --document-exported 1`] = `
18321840
18331841
### staticSetter
18341842
1835-
**Parameters**
1843+
#### Parameters
18361844
18371845
- \`v\`
18381846
18391847
## T5
18401848
1841-
Type: [boolean][32]
1849+
Type: [boolean][40]
18421850
18431851
## y2Default
18441852
18451853
## y4
18461854
18471855
Description of y3
18481856
1849-
**Parameters**
1857+
### Parameters
18501858
1851-
- \`p\` **[number][33]**
1859+
- \`p\` **[number][41]**
18521860
18531861
Returns **void**
18541862
@@ -1860,7 +1868,7 @@ Returns **void**
18601868
18611869
### setter
18621870
1863-
**Parameters**
1871+
#### Parameters
18641872
18651873
- \`v\`
18661874
@@ -1874,19 +1882,19 @@ Returns **void**
18741882
18751883
## T
18761884
1877-
Type: [number][33]
1885+
Type: [number][41]
18781886
18791887
## T2
18801888
1881-
Type: [string][31]
1889+
Type: [string][39]
18821890
18831891
## T4
18841892
1885-
Type: [string][31]
1893+
Type: [string][39]
18861894
18871895
## f4
18881896
1889-
**Parameters**
1897+
### Parameters
18901898
18911899
- \`x\` **X**
18921900
@@ -1898,7 +1906,7 @@ Type: [string][31]
18981906
18991907
f5 comment
19001908
1901-
**Parameters**
1909+
### Parameters
19021910
19031911
- \`y\` **Y**
19041912
@@ -1912,65 +1920,81 @@ f5 comment
19121920
19131921
[3]: #x
19141922
1915-
[4]: #class
1923+
[4]: #parameters
19161924
1917-
[5]: #classmethod
1925+
[5]: #class
19181926
1919-
[6]: #classgetter
1927+
[6]: #parameters-1
19201928
1921-
[7]: #classsetter
1929+
[7]: #classmethod
19221930
1923-
[8]: #staticmethod
1931+
[8]: #classgetter
19241932
1925-
[9]: #staticgetter
1933+
[9]: #classsetter
19261934
1927-
[10]: #staticsetter
1935+
[10]: #parameters-2
19281936
1929-
[11]: #t5
1937+
[11]: #staticmethod
19301938
1931-
[12]: #y2default
1939+
[12]: #staticgetter
19321940
1933-
[13]: #y4
1941+
[13]: #staticsetter
19341942
1935-
[14]: #object
1943+
[14]: #parameters-3
19361944
1937-
[15]: #method
1945+
[15]: #t5
19381946
1939-
[16]: #getter
1947+
[16]: #y2default
19401948
1941-
[17]: #setter
1949+
[17]: #y4
19421950
1943-
[18]: #prop
1951+
[18]: #parameters-4
19441952
1945-
[19]: #func
1953+
[19]: #object
19461954
1947-
[20]: #f1
1955+
[20]: #method
19481956
1949-
[21]: #f3
1957+
[21]: #getter
19501958
1951-
[22]: #t
1959+
[22]: #setter
19521960
1953-
[23]: #t2
1961+
[23]: #parameters-5
19541962
1955-
[24]: #t4
1963+
[24]: #prop
19561964
1957-
[25]: #f4
1965+
[25]: #func
19581966
1959-
[26]: #o1
1967+
[26]: #f1
19601968
1961-
[27]: #om1
1969+
[27]: #f3
19621970
1963-
[28]: #f5
1971+
[28]: #t
19641972
1965-
[29]: #o2
1973+
[29]: #t2
19661974
1967-
[30]: #om2
1975+
[30]: #t4
19681976
1969-
[31]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
1977+
[31]: #f4
19701978
1971-
[32]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean
1979+
[32]: #parameters-6
19721980
1973-
[33]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number
1981+
[33]: #o1
1982+
1983+
[34]: #om1
1984+
1985+
[35]: #f5
1986+
1987+
[36]: #parameters-7
1988+
1989+
[37]: #o2
1990+
1991+
[38]: #om2
1992+
1993+
[39]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String
1994+
1995+
[40]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean
1996+
1997+
[41]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number
19741998
"
19751999
`;
19762000

0 commit comments

Comments
 (0)