Skip to content

Commit

Permalink
Fixed #60. When we updated codehilite, we forgot to update fenced_cod…
Browse files Browse the repository at this point in the history
…ee to work with it.
  • Loading branch information
Waylan Limberg committed Dec 28, 2011
1 parent 4cff7fe commit 0047fb4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions markdown/extensions/fenced_code.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,12 @@ def run(self, lines):
# is enabled, so we call it to highlite the code
if self.codehilite_conf:
highliter = CodeHilite(m.group('code'),
linenos=self.codehilite_conf['force_linenos'],
guess_lang=self.codehilite_conf['guess_lang'],
css_class=self.codehilite_conf['css_class'],
style=self.codehilite_conf['pygments_style'],
linenos=self.codehilite_conf['force_linenos'][0],
guess_lang=self.codehilite_conf['guess_lang'][0],
css_class=self.codehilite_conf['css_class'][0],
style=self.codehilite_conf['pygments_style'][0],
lang=(m.group('lang') or None),
noclasses=self.codehilite_conf['noclasses'])
noclasses=self.codehilite_conf['noclasses'][0])

code = highliter.hilite()
else:
Expand Down

0 comments on commit 0047fb4

Please sign in to comment.