You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it('should work with multiple inline code blocks in same paragraph',()=>{src='bla `click()`{.c} blah `release()`{.cpp}';expected='<p>bla <code class="c">click()</code> blah <code class="cpp">release()</code></p>\n';assert.equal(md.render(src),expected);});it('should work with interleaved inline code blocks in same paragraph #1',()=>{src='bla `click()` blah `release()`{.cpp} foo `repeat()`{.c}';expected='<p>bla <code>click()</code> blah <code class="cpp">release()</code> foo <code class="c">repeat()</code></p>\n';assert.equal(md.render(src),expected);});it('should work with interleaved inline code blocks in same paragraph #2',()=>{src='bla `click()` blah `release()`{.cpp} foo `repeat()`{.c} bar `end()`';expected='<p>bla <code>click()</code> blah <code class="cpp">release()</code> foo <code class="c">repeat()</code> bar <code>end()</code></p>\n';assert.equal(md.render(src),expected);});
The text was updated successfully, but these errors were encountered:
rivy
changed the title
attributes for second+ inline code blocks in a paragraph fails
Incorrect attribute assignment for multiple inline code blocks in a paragraph
Jan 7, 2018
These tests fail...
The text was updated successfully, but these errors were encountered: