From a53ec86466a5852b3886bc4a8aa6fa686403e73c Mon Sep 17 00:00:00 2001 From: Dmitry Date: Fri, 8 Nov 2013 20:26:25 +0400 Subject: [PATCH] Bugfix, call horizRule with proper context --- src/dialects/gruber.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dialects/gruber.js b/src/dialects/gruber.js index a415969a..36e5084e 100644 --- a/src/dialects/gruber.js +++ b/src/dialects/gruber.js @@ -361,7 +361,7 @@ define(['../markdown_helpers', './dialect_helpers', '../parser'], function (Mark block = next.shift(); // Check for an HR following a list: features/lists/hr_abutting - var hr = this.dialect.block.horizRule( block, next ); + var hr = this.dialect.block.horizRule( this, block, next); if ( hr ) { ret.push.apply(ret, hr);