We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7bf1287 + ff9623a commit fed6f9eCopy full SHA for fed6f9e
1 file changed
commands/local/update-docs.js
@@ -53,9 +53,13 @@ function updateTransformREADME(transformName) {
53
'---',
54
`<a id="${testName}"></a>`,
55
`**Input** (<small>[${testName}.input${extension}](${inputPath})</small>):`,
56
+ '```${extension}',
57
fs.readFileSync(inputPath),
58
+ '```',
59
`**Output** (<small>[${testName}.input${extension}](${outputPath})</small>):`,
- fs.readFileSync(outputPath)
60
61
+ fs.readFileSync(outputPath),
62
+ '```'
63
);
64
});
65
0 commit comments