Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Test2/expected-results/generalP5.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@ ImageDescriptionCamera directionSVG, JPEG, GIF or PNG formatAll pictures were ta
# Lists

Various sorts of list are legal within paragraphs, and you can reference [items in lists](#birds)...
1.Dogs
1. Dogs

1.Zebras
1. Zebras

1.Birds
1. Birds

1.Cats
1. Cats

100
* first item
Expand Down
4 changes: 2 additions & 2 deletions markdown/tei-to-markdown.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@
<xsl:template match="tei:item|tei:biblStruct">
<xsl:call-template name="newline"/>
<xsl:choose>
<xsl:when test="tei:isOrderedList(..)">1.</xsl:when>
<xsl:when test="tei:isOrderedList(..)">1. </xsl:when>
<xsl:otherwise xml:space="preserve">* </xsl:otherwise>
</xsl:choose>
<xsl:apply-templates/>
Expand All @@ -318,4 +318,4 @@
<xsl:apply-templates/>
</xsl:template>

</xsl:stylesheet>
</xsl:stylesheet>
Loading