Skip to content

Commit d256dc3

Browse files
committed
rename printable.md
1 parent 4abb3a8 commit d256dc3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ package-lock.json
1212
.cache
1313
internal-links.tap
1414
stats.json
15-
printable.md
15+
printable.mdx
1616
repositories/*.json

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
"scripts": {
2727
"clean-dist": "rimraf ./dist",
28-
"clean-printable": "rimraf src/content/**/printable.md",
28+
"clean-printable": "rimraf src/content/**/printable.mdx",
2929
"preclean": "run-s clean-dist clean-printable",
3030
"clean": "rimraf src/content/**/_*.md src/**/_*.json repositories/*.json",
3131
"start": "npm run clean-dist && webpack serve --config webpack.dev.js --env dev --progress --node-env development",

src/components/Site/Site.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function Site(props) {
9898
}))
9999
.filter(
100100
(page) =>
101-
page.title !== 'printable.md' && !page.content.includes('Printable')
101+
page.title !== 'printable.mdx' && !page.content.includes('Printable')
102102
);
103103
};
104104

src/scripts/concatenate-docs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const front = require('front-matter');
55

66
// root path
77
const rootPath = path.join('src', 'content');
8-
const outFileName = 'printable.md';
8+
const outFileName = 'printable.mdx';
99

1010
console.info(
1111
'Concatenating *.md files of each content directory to create chapter-wide help files to be used for printing'

0 commit comments

Comments
 (0)