This is an example with ^broken superscript.
' expect(render_markdown(markdown)).to include(expected_output) end it 'does not convert text that only ends with ^' do markdown = 'This is an example with broken^ superscript.' expected_output = 'This is an example with broken^ superscript.
' expect(render_markdown(markdown)).to include(expected_output) end it 'does not convert text with uneven numbers of ^' do markdown = 'This is an example with ^broken^ superscript^.' expected_output = 'This is an example with broken superscript^.
' expect(render_markdown(markdown)).to include(expected_output) end end end