The Markdown content of the page. You can use <code>(== include {path}
==)</code> to include content from a Markdown file. The content can be
used to produce the documentation page such as HTML format page.
The name of the page. It will be used as an identity of the page to
generate URI of the page, text of the link to this page in navigation,
etc. The full page name (start from the root page name to this page
concatenated with .) can be used as reference to the page in your
documentation. For example:
<pre><code>pages:
name: Tutorial
content: (== include tutorial.md ==)
subpages:
name: Java
content: (== include tutorial_java.md ==)
</code></pre>
You can reference Java page using Markdown reference link syntax:
[Java][Tutorial.Java].
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-05-02 UTC."],[[["The `Page` class represents a documentation page that can contain subpages, allowing for nested documentation structures."],["A `Page` object can be created using a default constructor or by copying an existing `Page` object via its constructor, `Page(Page other)`."],["Key properties of a `Page` include `Name` for identifying the page, `Content` for the Markdown content, and `Subpages` for defining nested pages."],["`Page` implements multiple interfaces like `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, which gives it functionalities such as deep cloning, equality comparisons, and handling protocol buffer messages."],["The class has several methods that handles actions such as calculating size, cloning, merging, comparing, writing and reading to/from a coded stream, and getting a string representation of the object."]]],[]]