Skip to content

Commit bbb8c58

Browse files
committed
Don't show full comment in the output
Signed-off-by: Felipe Contreras <[email protected]>
1 parent 51a2b22 commit bbb8c58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function doMath(input) {
2727
let output_line = '';
2828
if (line) {
2929
if (line.startsWith('#')) {
30-
output_line = line;
30+
output_line = '#';
3131
} else {
3232
try {
3333
const r = math.evaluate(line, scope);

0 commit comments

Comments
 (0)