TopicTransformationCoreRenderTextNode Method
This is used to render a text node
Namespace: Sandcastle.Core.PresentationStyle.TransformationAssembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2024.12.21.0
public virtual void RenderTextNode(
XElement content,
XText textNode
)
Public Overridable Sub RenderTextNode (
content As XElement,
textNode As XText
)
public:
virtual void RenderTextNode(
XElement^ content,
XText^ textNode
)
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
By default, this just adds the text to the given content element. Presentation styles can
override this to provide additional formatting support for text. For example, Open XML needs to
normalize whitespace and handle some other conditions.