RefractTrack Markdown Formatting: Difference between revisions
Appearance
Nerdofepic (talk | contribs) Created page with "== Markdown Formatting == Free-text fields (task descriptions, comments, bug fields) support a small, purpose-built markdown subset — not a full CommonMark implementation. A help modal in the app documents this for end users; this page is the reference version. === Block-level syntax === {| class="wikitable" ! Syntax !! Result |- | <code><nowiki># Heading</nowiki></code> || Heading (rendered as <code><nowiki><h4></nowiki></code>) |- | <code><nowiki>## Heading</nowik..." |
Nerdofepic (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
== | == Formatting Text == | ||
Anywhere you can type a longer note — task descriptions, comments, bug details — RefractTrack supports a small set of simple formatting shortcuts, so you can add structure without needing a rich-text toolbar. There's also a help button right next to these fields in the app if you ever need a quick reminder. | |||
=== | === Structuring a block of text === | ||
{| class="wikitable" | {| class="wikitable" | ||
! | ! Type this !! To get | ||
|- | |- | ||
| | | A line starting with <nowiki>#</nowiki> || A heading | ||
|- | |- | ||
| | | A line starting with <nowiki>##</nowiki> || A smaller heading | ||
|- | |- | ||
| | | A line starting with <nowiki>-</nowiki> or <nowiki>*</nowiki> || A bullet point | ||
|- | |- | ||
| | | A line starting with <nowiki>1.</nowiki> || A numbered list item | ||
|- | |- | ||
| Two spaces of indent | | Two spaces of indent || Nests a list item under the one above | ||
|- | |- | ||
| | | Triple backticks around a block, with a language name || A code block, with basic color highlighting for C# and JSON | ||
|} | |} | ||
=== Formatting a word or phrase === | |||
=== | |||
{| class="wikitable" | {| class="wikitable" | ||
! | ! Type this !! To get | ||
|- | |- | ||
| | | <nowiki>**bold**</nowiki> || '''bold''' | ||
|- | |- | ||
| | | <nowiki>*italic*</nowiki> || ''italic'' | ||
|- | |- | ||
| | | <nowiki>++underline++</nowiki> || underlined text | ||
|} | |} | ||
=== | === Live preview === | ||
As you type in a description or comment box, a live preview shows exactly how the formatted text will look — no guessing, and no need to save first to check. | |||
=== Task codes link themselves === | |||
=== | |||
You never need to manually link to another task. Just type its code — like ''FE-12'' — anywhere in a description or comment, and RefractTrack automatically turns it into a clickable link, as long as it's a real task you have permission to see. | |||
=== Related pages === | === Related pages === | ||
* [[RefractTrack_Tasks|Tasks]] | * [[RefractTrack_Tasks|Tasks]] | ||
* [[RefractTrack_Comments_and_Activity_Log|Comments and Activity | * [[RefractTrack_Comments_and_Activity_Log|Comments and Activity]] | ||
Revision as of 14:02, 28 August 2026
Formatting Text
Anywhere you can type a longer note — task descriptions, comments, bug details — RefractTrack supports a small set of simple formatting shortcuts, so you can add structure without needing a rich-text toolbar. There's also a help button right next to these fields in the app if you ever need a quick reminder.
Structuring a block of text
| Type this | To get |
|---|---|
| A line starting with # | A heading |
| A line starting with ## | A smaller heading |
| A line starting with - or * | A bullet point |
| A line starting with 1. | A numbered list item |
| Two spaces of indent | Nests a list item under the one above |
| Triple backticks around a block, with a language name | A code block, with basic color highlighting for C# and JSON |
Formatting a word or phrase
| Type this | To get |
|---|---|
| **bold** | bold |
| *italic* | italic |
| ++underline++ | underlined text |
Live preview
As you type in a description or comment box, a live preview shows exactly how the formatted text will look — no guessing, and no need to save first to check.
Task codes link themselves
You never need to manually link to another task. Just type its code — like FE-12 — anywhere in a description or comment, and RefractTrack automatically turns it into a clickable link, as long as it's a real task you have permission to see.