diff --git a/pkg/renderer/html5/paragraph_test.go b/pkg/renderer/html5/paragraph_test.go
index 9db44941..4b3100a3 100644
--- a/pkg/renderer/html5/paragraph_test.go
+++ b/pkg/renderer/html5/paragraph_test.go
@@ -51,6 +51,14 @@ and here another paragraph
and here another paragraph
+
`
+ verify(GinkgoT(), expectedResult, actualContent)
+ })
+
+ It("paragraph with single quotes", func() {
+ actualContent := `a 'subsection' paragraph.`
+ expectedResult := `
+
a 'subsection' paragraph.
`
verify(GinkgoT(), expectedResult, actualContent)
})
diff --git a/test/fixtures/pending/sample.adoc b/test/fixtures/supported/sample.adoc
similarity index 100%
rename from test/fixtures/pending/sample.adoc
rename to test/fixtures/supported/sample.adoc
diff --git a/test/fixtures/pending/sample.html b/test/fixtures/supported/sample.html
similarity index 96%
rename from test/fixtures/pending/sample.html
rename to test/fixtures/supported/sample.html
index 724a9d5e..54c0e600 100644
--- a/test/fixtures/pending/sample.html
+++ b/test/fixtures/supported/sample.html
@@ -26,7 +26,7 @@ Section A
Section A Subsection
-
Section A 'subsection' paragraph.
+
Section A 'subsection' paragraph.