File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,5 +12,5 @@ package-lock.json
12
12
.cache
13
13
internal-links.tap
14
14
stats.json
15
- printable.md
15
+ printable.mdx
16
16
repositories /* .json
Original file line number Diff line number Diff line change 25
25
},
26
26
"scripts" : {
27
27
"clean-dist" : " rimraf ./dist" ,
28
- "clean-printable" : " rimraf src/content/**/printable.md " ,
28
+ "clean-printable" : " rimraf src/content/**/printable.mdx " ,
29
29
"preclean" : " run-s clean-dist clean-printable" ,
30
30
"clean" : " rimraf src/content/**/_*.md src/**/_*.json repositories/*.json" ,
31
31
"start" : " npm run clean-dist && webpack serve --config webpack.dev.js --env dev --progress --node-env development" ,
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ function Site(props) {
98
98
} ) )
99
99
. filter (
100
100
( page ) =>
101
- page . title !== 'printable.md ' && ! page . content . includes ( 'Printable' )
101
+ page . title !== 'printable.mdx ' && ! page . content . includes ( 'Printable' )
102
102
) ;
103
103
} ;
104
104
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const front = require('front-matter');
5
5
6
6
// root path
7
7
const rootPath = path . join ( 'src' , 'content' ) ;
8
- const outFileName = 'printable.md ' ;
8
+ const outFileName = 'printable.mdx ' ;
9
9
10
10
console . info (
11
11
'Concatenating *.md files of each content directory to create chapter-wide help files to be used for printing'
You can’t perform that action at this time.
0 commit comments