Skip to content

Commit

Permalink
Merge pull request #831 from snnz/custom-container
Browse files Browse the repository at this point in the history
Set delimiter char and count in CustomContainerInline instances.
  • Loading branch information
xoofx authored Dec 17, 2024
2 parents 5ae8ab7 + d0311b4 commit 102d02a
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ public void Setup(MarkdownPipelineBuilder pipeline)
{
if (delimiterCount == 2 && emphasisChar == ':')
{
return new CustomContainerInline();
return new CustomContainerInline
{
DelimiterChar = ':',
DelimiterCount = 2
};
}
return null;
});
Expand Down

0 comments on commit 102d02a

Please sign in to comment.