TopicTransformationCoreRenderTextNode Method

This is used to render a text node

Definition

Namespace: Sandcastle.Core.PresentationStyle.Transformation
Assembly: Sandcastle.Core (in Sandcastle.Core.dll) Version: 2024.12.21.0
public virtual void RenderTextNode(
	XElement content,
	XText textNode
)

Parameters

content  XElement
The content element to which the text is added
textNode  XText
The text node to render

Remarks

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.

See Also