Beispiel #1
0
 public virtual StringBuffer Render(IMarkdownRenderer render, AzureIncludeBlockToken token, MarkdownBlockContext context)
 {
     // Don't add \n\n here because if we render AzureIncludeBlockToken, it will always be wrappered by paragraph. Which already append \n\n
     return(RenderAzureIncludeToken(render, token, context));
 }
Beispiel #2
0
 public virtual StringBuffer Render(IMarkdownRenderer render, AzureIncludeBlockToken token, MarkdownBlockContext context)
 {
     // Don't add \n\n here because if we render AzureIncludeBlockToken, it will always be wrappered by paragraph. Which already append \n\n
     return RenderAzureIncludeToken(render, token, context);
 }
Beispiel #3
0
        public virtual StringBuffer Render(IMarkdownRenderer render, AzureIncludeBlockToken token, MarkdownBlockContext context)
        {
            StringBuffer content = RenderAzureIncludeToken(token, context);

            return(content + "\n\n");
        }
Beispiel #4
0
 public virtual StringBuffer Render(IMarkdownRenderer render, AzureIncludeBlockToken token, MarkdownBlockContext context)
 {
     StringBuffer content = RenderAzureIncludeToken(token, context);
     return content + "\n\n";
 }