MarkdownConversionTransformationRenderTextNode Method
This is used to provide additional whitespace handling and normalization for markdown elements
Namespace: Sandcastle.Core.PresentationStyle.ConversionAssembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2025.12.18.0
public override void RenderTextNode(
XElement content,
XText textNode
)
Public Overrides Sub RenderTextNode (
content As XElement,
textNode As XText
)
public:
virtual void RenderTextNode(
XElement^ content,
XText^ textNode
) override
abstract RenderTextNode :
content : XElement *
textNode : XText -> unit
override RenderTextNode :
content : XElement *
textNode : XText -> unit
Parameters
- content XElement
- The content element to which the text is added
- textNode XText
- The text node to render
For conversion, text is passed through as-is without any normalization except for stripping
whitespace at the start of lines. This may result in some odd formatting but should help preserve
the overall layout of the source document.