create-packer 1.12.3 → 1.12.6

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 (102) hide show
  1. package/.gitignore +27 -27
  2. package/LICENSE +21 -21
  3. package/README.md +18 -18
  4. package/bin/clis/createTemp.d.ts +5 -5
  5. package/bin/clis/createTemp.js +58 -58
  6. package/bin/index.d.ts +2 -2
  7. package/bin/index.js +10 -10
  8. package/bin/utils/index.d.ts +4 -4
  9. package/bin/utils/index.js +45 -45
  10. package/package.json +43 -43
  11. package/template/docusaurus/.gitignore +20 -20
  12. package/template/docusaurus/.prettierignore +6 -6
  13. package/template/docusaurus/.prettierrc.js +20 -20
  14. package/template/docusaurus/README.md +33 -33
  15. package/template/docusaurus/babel.config.js +3 -3
  16. package/template/docusaurus/blog/2019-05-28-hola.md +11 -11
  17. package/template/docusaurus/blog/2019-05-29-hello-world.md +17 -17
  18. package/template/docusaurus/blog/2019-05-30-welcome.md +13 -13
  19. package/template/docusaurus/docs/doc1/doc1.mdx +201 -201
  20. package/template/docusaurus/docs/doc1/doc2.mdx +5 -5
  21. package/template/docusaurus/docs/doc1/doc3.mdx +13 -13
  22. package/template/docusaurus/docs/doc1/doc4.mdx +23 -23
  23. package/template/docusaurus/docs/doc2/doc1.mdx +200 -200
  24. package/template/docusaurus/docs/doc2/doc2.mdx +5 -5
  25. package/template/docusaurus/docs/doc2/doc3.mdx +13 -13
  26. package/template/docusaurus/docs/doc2/mdx4.mdx +23 -23
  27. package/template/docusaurus/docusaurus.config.js +134 -134
  28. package/template/docusaurus/package.json +54 -54
  29. package/template/docusaurus/sidebars.js +14 -14
  30. package/template/docusaurus/src/css/custom.css +33 -33
  31. package/template/docusaurus/src/pages/index.tsx +18 -18
  32. package/template/docusaurus/static/img/undraw_docusaurus_mountain.svg +170 -170
  33. package/template/docusaurus/static/img/undraw_docusaurus_react.svg +169 -169
  34. package/template/docusaurus/tsconfig.json +4 -4
  35. package/template/lib/.changeset/README.md +8 -8
  36. package/template/lib/.changeset/config.json +11 -11
  37. package/template/lib/.gitignore +35 -35
  38. package/template/lib/package.json +30 -30
  39. package/template/lib/packages/test/.gitignore +35 -35
  40. package/template/lib/packages/test/package.json +13 -13
  41. package/template/lib/packages/test/src/index.ts +5 -5
  42. package/template/lib/packages/test/tsconfig.json +17 -17
  43. package/template/lib/pnpm-lock.yaml +2386 -2386
  44. package/template/lib/pnpm-workspace.yaml +2 -2
  45. package/template/nest/.eslintrc.js +25 -25
  46. package/template/nest/.gitignore +34 -34
  47. package/template/nest/.husky/pre-commit +4 -4
  48. package/template/nest/.prettierrc +6 -6
  49. package/template/nest/README.md +73 -73
  50. package/template/nest/nest-cli.json +5 -5
  51. package/template/nest/package.json +28 -28
  52. package/template/nest/src/app.controller.spec.ts +22 -22
  53. package/template/nest/src/app.controller.ts +12 -12
  54. package/template/nest/src/app.module.ts +10 -10
  55. package/template/nest/src/app.service.ts +8 -8
  56. package/template/nest/src/main.ts +10 -10
  57. package/template/nest/src/utils/transform.interceptor.ts +26 -26
  58. package/template/nest/test/app.e2e-spec.ts +24 -24
  59. package/template/nest/test/jest-e2e.json +9 -9
  60. package/template/nest/tsconfig.build.json +5 -5
  61. package/template/nest/tsconfig.json +21 -21
  62. package/template/react/.eslintrc +52 -47
  63. package/template/react/.gitignore +25 -25
  64. package/template/react/.husky/commit-msg +4 -0
  65. package/template/react/.husky/pre-commit +4 -4
  66. package/template/react/.prettierignore +4 -4
  67. package/template/react/.prettierrc +18 -18
  68. package/template/react/.stylelintrc +22 -22
  69. package/template/react/README.md +13 -13
  70. package/template/react/commitlint.config.cjs +1 -0
  71. package/template/react/index.html +13 -13
  72. package/template/react/jest.config.cjs +55 -55
  73. package/template/react/jest.setup.ts +5 -5
  74. package/template/react/package.json +30 -27
  75. package/template/react/postcss.config.cjs +9 -9
  76. package/template/react/src/providers/defineStore.ts +1 -1
  77. package/template/react/stats.html +4044 -4044
  78. package/template/react/tailwind.config.cjs +8 -8
  79. package/template/react/tsconfig.json +25 -25
  80. package/template/react/tsconfig.node.json +9 -9
  81. package/template/react/vite.config.ts +19 -14
  82. package/template/vue/.eslintrc +6 -1
  83. package/template/vue/.gitignore +25 -25
  84. package/template/vue/.husky/commit-msg +4 -0
  85. package/template/vue/.husky/pre-commit +4 -4
  86. package/template/vue/.prettierignore +4 -4
  87. package/template/vue/.prettierrc +18 -18
  88. package/template/vue/.stylelintrc +22 -22
  89. package/template/vue/README.md +12 -12
  90. package/template/vue/commitlint.config.cjs +1 -0
  91. package/template/vue/index.html +13 -13
  92. package/template/vue/package.json +24 -21
  93. package/template/vue/postcss.config.cjs +9 -9
  94. package/template/vue/src/app/app.store.ts +2 -8
  95. package/template/vue/src/providers/index.ts +1 -0
  96. package/template/vue/src/providers/renderToDom.ts +16 -0
  97. package/template/vue/tailwind.config.cjs +8 -8
  98. package/template/vue/tsconfig.json +22 -22
  99. package/template/vue/tsconfig.node.json +9 -9
  100. package/template/vue/vite.config.ts +19 -14
  101. package/template/react/.vscode/extensions.json +0 -8
  102. package/template/vue/.vscode/extensions.json +0 -9
@@ -1,200 +1,200 @@
1
- ---
2
- sidebar_label: doc2_index
3
- ---
4
-
5
- You can write content using [GitHub-flavored Markdown syntax](https://github.github.com/gfm/).
6
-
7
- ## Markdown Syntax
8
-
9
- To serve as an example page when styling markdown based Docusaurus sites.
10
-
11
- ## Headers
12
-
13
- # H1 - Create the best documentation
14
-
15
- ## H2 - Create the best documentation
16
-
17
- ### H3 - Create the best documentation
18
-
19
- #### H4 - Create the best documentation
20
-
21
- ##### H5 - Create the best documentation
22
-
23
- ###### H6 - Create the best documentation
24
-
25
- ---
26
-
27
- ## Emphasis
28
-
29
- Emphasis, aka italics, with _asterisks_ or _underscores_.
30
-
31
- Strong emphasis, aka bold, with **asterisks** or **underscores**.
32
-
33
- Combined emphasis with **asterisks and _underscores_**.
34
-
35
- Strikethrough uses two tildes. ~~Scratch this.~~
36
-
37
- ---
38
-
39
- ## Lists
40
-
41
- 1. First ordered list item
42
- 1. Another item
43
- - Unordered sub-list.
44
- 1. Actual numbers don't matter, just that it's a number
45
- 1. Ordered sub-list
46
- 1. And another item.
47
-
48
- - Unordered list can use asterisks
49
-
50
- * Or minuses
51
-
52
- - Or pluses
53
-
54
- ---
55
-
56
- ## Links
57
-
58
- [I'm an inline-style link](https://www.google.com/)
59
-
60
- [I'm an inline-style link with title](https://www.google.com/ "Google's Homepage")
61
-
62
- [I'm a reference-style link][arbitrary case-insensitive reference text]
63
-
64
- [You can use numbers for reference-style link definitions][1]
65
-
66
- Or leave it empty and use the [link text itself].
67
-
68
- URLs and URLs in angle brackets will automatically get turned into links. http://www.example.com/ or <http://www.example.com/> and sometimes example.com (but not on GitHub, for example).
69
-
70
- Some text to show that the reference links can follow later.
71
-
72
- [arbitrary case-insensitive reference text]: https://www.mozilla.org/
73
- [1]: http://slashdot.org/
74
- [link text itself]: http://www.reddit.com/
75
-
76
- ---
77
-
78
- ## Images
79
-
80
- Here's our logo (hover to see the title text):
81
-
82
- Inline-style: ![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png 'Logo Title Text 1')
83
-
84
- Reference-style: ![alt text][logo]
85
-
86
- [logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png 'Logo Title Text 2'
87
-
88
- Images from any folder can be used by providing path to file. Path should be relative to markdown file.
89
-
90
- ![img](../../static/img/logo.svg)
91
-
92
- ---
93
-
94
- ## Code
95
-
96
- ```javascript
97
- var s = 'JavaScript syntax highlighting'
98
- alert(s)
99
- ```
100
-
101
- ```python
102
- s = "Python syntax highlighting"
103
- print(s)
104
- ```
105
-
106
- ```
107
- No language indicated, so no syntax highlighting.
108
- But let's throw in a <b>tag</b>.
109
- ```
110
-
111
- ```js {2}
112
- function highlightMe() {
113
- console.log('This line can be highlighted!')
114
- }
115
- ```
116
-
117
- ---
118
-
119
- ## Tables
120
-
121
- Colons can be used to align columns.
122
-
123
- | Tables | Are | Cool |
124
- | ------------- | :-----------: | -----: |
125
- | col 3 is | right-aligned | \$1600 |
126
- | col 2 is | centered | \$12 |
127
- | zebra stripes | are neat | \$1 |
128
-
129
- There must be at least 3 dashes separating each header cell. The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.
130
-
131
- | Markdown | Less | Pretty |
132
- | -------- | --------- | ---------- |
133
- | _Still_ | `renders` | **nicely** |
134
- | 1 | 2 | 3 |
135
-
136
- ---
137
-
138
- ## Blockquotes
139
-
140
- > Blockquotes are very handy in email to emulate reply text. This line is part of the same quote.
141
-
142
- Quote break.
143
-
144
- > This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can _put_ **Markdown** into a blockquote.
145
-
146
- ---
147
-
148
- ## Inline HTML
149
-
150
- <dl>
151
- <dt>Definition list</dt>
152
- <dd>Is something people use sometimes.</dd>
153
-
154
- <dt>Markdown in HTML</dt>
155
- <dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
156
- </dl>
157
-
158
- ---
159
-
160
- ## Line Breaks
161
-
162
- Here's a line for us to start with.
163
-
164
- This line is separated from the one above by two newlines, so it will be a _separate paragraph_.
165
-
166
- This line is also a separate paragraph, but... This line is only separated by a single newline, so it's a separate line in the _same paragraph_.
167
-
168
- ---
169
-
170
- ## Admonitions
171
-
172
- :::note
173
-
174
- This is a note
175
-
176
- :::
177
-
178
- :::tip
179
-
180
- This is a tip
181
-
182
- :::
183
-
184
- :::important
185
-
186
- This is important
187
-
188
- :::
189
-
190
- :::caution
191
-
192
- This is a caution
193
-
194
- :::
195
-
196
- :::warning
197
-
198
- This is a warning
199
-
200
- :::
1
+ ---
2
+ sidebar_label: doc2_index
3
+ ---
4
+
5
+ You can write content using [GitHub-flavored Markdown syntax](https://github.github.com/gfm/).
6
+
7
+ ## Markdown Syntax
8
+
9
+ To serve as an example page when styling markdown based Docusaurus sites.
10
+
11
+ ## Headers
12
+
13
+ # H1 - Create the best documentation
14
+
15
+ ## H2 - Create the best documentation
16
+
17
+ ### H3 - Create the best documentation
18
+
19
+ #### H4 - Create the best documentation
20
+
21
+ ##### H5 - Create the best documentation
22
+
23
+ ###### H6 - Create the best documentation
24
+
25
+ ---
26
+
27
+ ## Emphasis
28
+
29
+ Emphasis, aka italics, with _asterisks_ or _underscores_.
30
+
31
+ Strong emphasis, aka bold, with **asterisks** or **underscores**.
32
+
33
+ Combined emphasis with **asterisks and _underscores_**.
34
+
35
+ Strikethrough uses two tildes. ~~Scratch this.~~
36
+
37
+ ---
38
+
39
+ ## Lists
40
+
41
+ 1. First ordered list item
42
+ 1. Another item
43
+ - Unordered sub-list.
44
+ 1. Actual numbers don't matter, just that it's a number
45
+ 1. Ordered sub-list
46
+ 1. And another item.
47
+
48
+ - Unordered list can use asterisks
49
+
50
+ * Or minuses
51
+
52
+ - Or pluses
53
+
54
+ ---
55
+
56
+ ## Links
57
+
58
+ [I'm an inline-style link](https://www.google.com/)
59
+
60
+ [I'm an inline-style link with title](https://www.google.com/ "Google's Homepage")
61
+
62
+ [I'm a reference-style link][arbitrary case-insensitive reference text]
63
+
64
+ [You can use numbers for reference-style link definitions][1]
65
+
66
+ Or leave it empty and use the [link text itself].
67
+
68
+ URLs and URLs in angle brackets will automatically get turned into links. http://www.example.com/ or <http://www.example.com/> and sometimes example.com (but not on GitHub, for example).
69
+
70
+ Some text to show that the reference links can follow later.
71
+
72
+ [arbitrary case-insensitive reference text]: https://www.mozilla.org/
73
+ [1]: http://slashdot.org/
74
+ [link text itself]: http://www.reddit.com/
75
+
76
+ ---
77
+
78
+ ## Images
79
+
80
+ Here's our logo (hover to see the title text):
81
+
82
+ Inline-style: ![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png 'Logo Title Text 1')
83
+
84
+ Reference-style: ![alt text][logo]
85
+
86
+ [logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png 'Logo Title Text 2'
87
+
88
+ Images from any folder can be used by providing path to file. Path should be relative to markdown file.
89
+
90
+ ![img](../../static/img/logo.svg)
91
+
92
+ ---
93
+
94
+ ## Code
95
+
96
+ ```javascript
97
+ var s = 'JavaScript syntax highlighting'
98
+ alert(s)
99
+ ```
100
+
101
+ ```python
102
+ s = "Python syntax highlighting"
103
+ print(s)
104
+ ```
105
+
106
+ ```
107
+ No language indicated, so no syntax highlighting.
108
+ But let's throw in a <b>tag</b>.
109
+ ```
110
+
111
+ ```js {2}
112
+ function highlightMe() {
113
+ console.log('This line can be highlighted!')
114
+ }
115
+ ```
116
+
117
+ ---
118
+
119
+ ## Tables
120
+
121
+ Colons can be used to align columns.
122
+
123
+ | Tables | Are | Cool |
124
+ | ------------- | :-----------: | -----: |
125
+ | col 3 is | right-aligned | \$1600 |
126
+ | col 2 is | centered | \$12 |
127
+ | zebra stripes | are neat | \$1 |
128
+
129
+ There must be at least 3 dashes separating each header cell. The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.
130
+
131
+ | Markdown | Less | Pretty |
132
+ | -------- | --------- | ---------- |
133
+ | _Still_ | `renders` | **nicely** |
134
+ | 1 | 2 | 3 |
135
+
136
+ ---
137
+
138
+ ## Blockquotes
139
+
140
+ > Blockquotes are very handy in email to emulate reply text. This line is part of the same quote.
141
+
142
+ Quote break.
143
+
144
+ > This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can _put_ **Markdown** into a blockquote.
145
+
146
+ ---
147
+
148
+ ## Inline HTML
149
+
150
+ <dl>
151
+ <dt>Definition list</dt>
152
+ <dd>Is something people use sometimes.</dd>
153
+
154
+ <dt>Markdown in HTML</dt>
155
+ <dd>Does *not* work **very** well. Use HTML <em>tags</em>.</dd>
156
+ </dl>
157
+
158
+ ---
159
+
160
+ ## Line Breaks
161
+
162
+ Here's a line for us to start with.
163
+
164
+ This line is separated from the one above by two newlines, so it will be a _separate paragraph_.
165
+
166
+ This line is also a separate paragraph, but... This line is only separated by a single newline, so it's a separate line in the _same paragraph_.
167
+
168
+ ---
169
+
170
+ ## Admonitions
171
+
172
+ :::note
173
+
174
+ This is a note
175
+
176
+ :::
177
+
178
+ :::tip
179
+
180
+ This is a tip
181
+
182
+ :::
183
+
184
+ :::important
185
+
186
+ This is important
187
+
188
+ :::
189
+
190
+ :::caution
191
+
192
+ This is a caution
193
+
194
+ :::
195
+
196
+ :::warning
197
+
198
+ This is a warning
199
+
200
+ :::
@@ -1,5 +1,5 @@
1
- ---
2
- title: Document Number 2
3
- ---
4
-
5
- This is a link to [another document.](doc3.md) This is a link to an [external page.](http://www.example.com/)
1
+ ---
2
+ title: Document Number 2
3
+ ---
4
+
5
+ This is a link to [another document.](doc3.md) This is a link to an [external page.](http://www.example.com/)
@@ -1,13 +1,13 @@
1
- ---
2
- title: This is Document Number 3
3
- ---
4
-
5
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ac euismod odio, eu consequat dui. Nullam molestie consectetur risus id imperdiet. Proin sodales ornare turpis, non mollis massa ultricies id. Nam at nibh scelerisque, feugiat ante non, dapibus tortor. Vivamus volutpat diam quis tellus elementum bibendum. Praesent semper gravida velit quis aliquam. Etiam in cursus neque. Nam lectus ligula, malesuada et mauris a, bibendum faucibus mi. Phasellus ut interdum felis. Phasellus in odio pulvinar, porttitor urna eget, fringilla lectus. Aliquam sollicitudin est eros. Mauris consectetur quam vitae mauris interdum hendrerit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
6
-
7
- Duis et egestas libero, imperdiet faucibus ipsum. Sed posuere eget urna vel feugiat. Vivamus a arcu sagittis, fermentum urna dapibus, congue lectus. Fusce vulputate porttitor nisl, ac cursus elit volutpat vitae. Nullam vitae ipsum egestas, convallis quam non, porta nibh. Morbi gravida erat nec neque bibendum, eu pellentesque velit posuere. Fusce aliquam erat eu massa eleifend tristique.
8
-
9
- Sed consequat sollicitudin ipsum eget tempus. Integer a aliquet velit. In justo nibh, pellentesque non suscipit eget, gravida vel lacus. Donec odio ante, malesuada in massa quis, pharetra tristique ligula. Donec eros est, tristique eget finibus quis, semper non nisl. Vivamus et elit nec enim ornare placerat. Sed posuere odio a elit cursus sagittis.
10
-
11
- Phasellus feugiat purus eu tortor ultrices finibus. Ut libero nibh, lobortis et libero nec, dapibus posuere eros. Sed sagittis euismod justo at consectetur. Nulla finibus libero placerat, cursus sapien at, eleifend ligula. Vivamus elit nisl, hendrerit ac nibh eu, ultrices tempus dui. Nam tellus neque, commodo non rhoncus eu, gravida in risus. Nullam id iaculis tortor.
12
-
13
- Nullam at odio in sem varius tempor sit amet vel lorem. Etiam eu hendrerit nisl. Fusce nibh mauris, vulputate sit amet ex vitae, congue rhoncus nisl. Sed eget tellus purus. Nullam tempus commodo erat ut tristique. Cras accumsan massa sit amet justo consequat eleifend. Integer scelerisque vitae tellus id consectetur.
1
+ ---
2
+ title: This is Document Number 3
3
+ ---
4
+
5
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ac euismod odio, eu consequat dui. Nullam molestie consectetur risus id imperdiet. Proin sodales ornare turpis, non mollis massa ultricies id. Nam at nibh scelerisque, feugiat ante non, dapibus tortor. Vivamus volutpat diam quis tellus elementum bibendum. Praesent semper gravida velit quis aliquam. Etiam in cursus neque. Nam lectus ligula, malesuada et mauris a, bibendum faucibus mi. Phasellus ut interdum felis. Phasellus in odio pulvinar, porttitor urna eget, fringilla lectus. Aliquam sollicitudin est eros. Mauris consectetur quam vitae mauris interdum hendrerit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
6
+
7
+ Duis et egestas libero, imperdiet faucibus ipsum. Sed posuere eget urna vel feugiat. Vivamus a arcu sagittis, fermentum urna dapibus, congue lectus. Fusce vulputate porttitor nisl, ac cursus elit volutpat vitae. Nullam vitae ipsum egestas, convallis quam non, porta nibh. Morbi gravida erat nec neque bibendum, eu pellentesque velit posuere. Fusce aliquam erat eu massa eleifend tristique.
8
+
9
+ Sed consequat sollicitudin ipsum eget tempus. Integer a aliquet velit. In justo nibh, pellentesque non suscipit eget, gravida vel lacus. Donec odio ante, malesuada in massa quis, pharetra tristique ligula. Donec eros est, tristique eget finibus quis, semper non nisl. Vivamus et elit nec enim ornare placerat. Sed posuere odio a elit cursus sagittis.
10
+
11
+ Phasellus feugiat purus eu tortor ultrices finibus. Ut libero nibh, lobortis et libero nec, dapibus posuere eros. Sed sagittis euismod justo at consectetur. Nulla finibus libero placerat, cursus sapien at, eleifend ligula. Vivamus elit nisl, hendrerit ac nibh eu, ultrices tempus dui. Nam tellus neque, commodo non rhoncus eu, gravida in risus. Nullam id iaculis tortor.
12
+
13
+ Nullam at odio in sem varius tempor sit amet vel lorem. Etiam eu hendrerit nisl. Fusce nibh mauris, vulputate sit amet ex vitae, congue rhoncus nisl. Sed eget tellus purus. Nullam tempus commodo erat ut tristique. Cras accumsan massa sit amet justo consequat eleifend. Integer scelerisque vitae tellus id consectetur.
@@ -1,23 +1,23 @@
1
- ---
2
- title: Powered by MDX
3
- ---
4
-
5
- You can write JSX and use React components within your Markdown thanks to [MDX](https://mdxjs.com/).
6
-
7
- export const Highlight = ({ children, color }) => (
8
- <span
9
- style={{
10
- backgroundColor: color,
11
- borderRadius: '2px',
12
- color: '#fff',
13
- padding: '0.2rem'
14
- }}>
15
- {children}
16
- </span>
17
- )
18
-
19
- <Highlight color="#25c2a0">Docusaurus green</Highlight> and <Highlight color="#1877F2">
20
- Facebook blue
21
- </Highlight> are my favorite colors.
22
-
23
- I can write **Markdown** alongside my _JSX_!
1
+ ---
2
+ title: Powered by MDX
3
+ ---
4
+
5
+ You can write JSX and use React components within your Markdown thanks to [MDX](https://mdxjs.com/).
6
+
7
+ export const Highlight = ({ children, color }) => (
8
+ <span
9
+ style={{
10
+ backgroundColor: color,
11
+ borderRadius: '2px',
12
+ color: '#fff',
13
+ padding: '0.2rem'
14
+ }}>
15
+ {children}
16
+ </span>
17
+ )
18
+
19
+ <Highlight color="#25c2a0">Docusaurus green</Highlight> and <Highlight color="#1877F2">
20
+ Facebook blue
21
+ </Highlight> are my favorite colors.
22
+
23
+ I can write **Markdown** alongside my _JSX_!