Skip to content

Commit

Permalink
Fix unexpected line numbers from showing up
Browse files Browse the repository at this point in the history
Fixes #76
  • Loading branch information
timonwong committed Jun 15, 2015
1 parent 024d7e4 commit 21921ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OmniMarkupLib/Renderers/MarkdownRenderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def load_settings(self, renderer_options, global_setting):
extensions.add('smarty')
if 'codehilite' in extensions:
extensions.remove('codehilite')
extensions.add('codehilite(guess_lang=False)')
extensions.add('codehilite(linenums=False,guess_lang=False)')
self.extensions = list(extensions)

@classmethod
Expand Down

0 comments on commit 21921ac

Please sign in to comment.