main

mattermost/focalboard

Last updated at: 29/12/2023 09:42

note.html

TLDR

This file contains an HTML template for rendering a note shortcode. The template includes a CSS class for styling the note and uses the passed-in parameters to display the note content.

END

<aside class="note">
    <div class="note-content">
        <strong>{{ .Get 0 }}</strong><br>
        {{ .Inner | markdownify }}
    </div>
</aside>