##// END OF EJS Templates
Fixed bad variable names in nbconvert.py and html.py.
Ivan Djokic -
Show More
@@ -102,7 +102,8 b' class ConverterHTML(Converter):'
102 102 '<div class="prompt input_prompt">In&nbsp;[%s]:</div>' % n
103 103 )
104 104 lines.append('<div class="input_area box-flex1">')
105 lines.append(highlight(cell.input) if self.highlight else cell.input)
105 lines.append(highlight(cell.input) if self.highlight_code
106 else cell.input)
106 107 lines.append('</div>') # input_area
107 108 lines.append('</div>') # input
108 109
@@ -84,4 +84,4 b" if __name__ == '__main__':"
84 84 exclude_cells = [s.strip() for s in args.exclude.split(',')]
85 85
86 86 main(infile=args.infile[0], format=args.format, preamble=args.preamble,
87 exclude=exclude_cells, highlight_code=args.plain_output)
87 exclude=exclude_cells, highlight_code=args.no_highlighting)
General Comments 0
You need to be logged in to leave comments. Login now