@@ -767,15 +767,22 @@ describe('libretto', ({ concurrent: it }) => {
767767 '<figure>\n<img src="img.png" alt="alt" />\n<figcaption>annotated <em>title</em> for caption</figcaption>\n</figure>' ,
768768 ] ,
769769
770+ 'quotes#escaped' : [ '\\"a b\\"' , '<p>"a b"</p>' ] ,
770771 'quotes#double/1' : [ '"hello"' , '<p>“hello”</p>' ] ,
771772 'quotes#double/2' : [ '"a *b* c"' , '<p>“a <em>b</em> c”</p>' ] ,
773+ 'quotes#double/3' : [ '"(quote)"' , '<p>“(quote)”</p>' ] ,
772774 'quotes#single/1' : [ "'hello'" , '<p>‘hello’</p>' ] ,
773775 'quotes#single/2' : [ "'a 'b' c'" , '<p>‘a ‘b’ c’</p>' ] ,
776+ 'quotes#single/3' : [ "don't" , '<p>don’t</p>' ] ,
777+ 'quotes#prime/1' : [ '24" monitor' , '<p>24″ monitor</p>' ] ,
778+ 'quotes#prime/2' : [ `5'5"` , '<p>5′5″</p>' ] ,
774779 'quotes#mixed/1' : [ `"a 'b' c"` , '<p>“a ‘b’ c”</p>' ] ,
775780 'quotes#mixed/2' : [ `'a "b" c'` , '<p>‘a “b” c’</p>' ] ,
776781 'quotes#mixed/3' : [ `'a "b' c"` , '<p>‘a “b’ c”</p>' ] ,
777782 'quotes#mixed/4' : [ `'"hello"'` , '<p>‘“hello”’</p>' ] ,
778783 'quotes#mixed/5' : [ `"'hello'"` , '<p>“‘hello’”</p>' ] ,
784+ 'quotes#mixed/6' : [ `"i'm sure"` , '<p>“i’m sure”</p>' ] ,
785+ 'quotes#mixed/7' : [ `"13" laptop"` , '<p>“13″ laptop”</p>' ] ,
779786
780787 'strike#single' : [ '~strike~' , '<p>~strike~</p>' ] ,
781788 'strike#normal' : [ '~~strike~~' , '<p><del>strike</del></p>' ] ,
0 commit comments