Skip to content

Commit

Permalink
Set delimiter in the CustomContainer instance.
Browse files Browse the repository at this point in the history
  • Loading branch information
snnz committed Dec 15, 2024
1 parent 49cf59b commit d0311b4
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 d0311b4

Please sign in to comment.