Skip to content

Commit c81c331

Browse files
Command Line: Don't modify empty code blocks (#2896)
1 parent 91f3aae commit c81c331

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

plugins/command-line/prism-command-line.js

+15
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,16 @@
2929
return s;
3030
}
3131

32+
/**
33+
* Returns whether the given hook environment has a command line info object.
34+
*
35+
* @param {any} env
36+
* @returns {boolean}
37+
*/
38+
function hasCommandLineInfo(env) {
39+
var vars = env.vars = env.vars || {};
40+
return 'command-line' in vars;
41+
}
3242
/**
3343
* Returns the command line info object from the given hook environment.
3444
*
@@ -129,6 +139,11 @@
129139
});
130140

131141
Prism.hooks.add('complete', function (env) {
142+
if (!hasCommandLineInfo(env)) {
143+
// the previous hooks never ran
144+
return;
145+
}
146+
132147
var commandLine = getCommandLineInfo(env);
133148

134149
if (commandLine.complete) {

plugins/command-line/prism-command-line.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)