Jump to content

Template:Documentation

From SA Docs

{{{header}}}

{{{content}}}


Template Usage

Syntax:
{{Documenation|header=my cool header|content=that's some good content}}

Render As:

my cool header

that's some good content


Content can also be filled in as normal by doing the following:

{{Documentation|header=Example Code|content=
This is one sentence.

This is another sentence.

<syntaxhighlight lang="cpp">
// This is also showing that other formatting methods are available.
extern "C"
{
    void MyCoolExportFunction()
    {
        
    }
}
</syntaxhighlight>
}}

Which this will render as the following:

Example Code

This is one sentence.

This is another sentence.

// This is also showing that other formatting methods are available.
extern "C"
{
    void MyCoolExportFunction()
    {
        
    }
}