Skip to main content

Using the Markdown Editor

Plateau Studio has a built-in Markdown editor for writing documentation inside your application. Markdown files are models like any other: they live in the Explorer, they are checked out with Start Working, they are saved and versioned, and they are searchable from Find And Replace.

What they are not is build output. A Markdown model is never published, exported or referenced by a running application — it is there so the notes, decisions and hand-over documents that belong to an application can live next to it instead of in a separate tool.

The editor shows your text on the left and a live preview of the result on the right.

Creating a Markdown File

  1. Click Add New at the bottom of the Explorer.

  2. Hover User Interface and choose Markdown File from the submenu.

  3. Give the file a name and click CREATE.

The new file is created, checked out to you automatically, and opened in the editor — you can start typing straight away.

You can also create a Markdown file inside a folder or a module. Open the menu on the folder or module in the Explorer and create it from there; the file is placed under that parent.

Writing

The left pane is where you type. The right pane re-renders as you type, so you always see the finished result.

The Formatting Toolbar

The buttons on the left of the toolbar insert Markdown for you, so you do not have to remember the syntax. Select some text first and the button wraps it; with nothing selected, the button inserts an empty structure for you to fill in.

Left to right, in groups:

GroupButtons
Text styleBold, underline, italic, strikethrough
StructureHeading level, subscript, superscript, quote, bulleted list, numbered list, task list
Blocks and objectsInline code, code block, link, image, table, mermaid diagram, KaTeX formula
HistoryUndo, redo

A few notes on the block buttons:

  • Image inserts an image link. Uploading image files into a Markdown model is not supported — point the link at an image that is already hosted somewhere.
  • Mermaid inserts a fenced ```mermaid block. Diagrams render in the preview pane as you type.
  • KaTeX inserts a formula block for mathematical notation.

The View Buttons

The buttons on the right of the toolbar control how the editor is laid out. They change what you see; they never change your file.

ButtonWhat it does
prettierReformats your Markdown source tidily — consistent spacing, list markers and table alignment
fullscreen in pageExpands the editor to fill the Studio window
fullscreenExpands the editor to fill your whole screen
previewShows or hides the preview pane
preview onlyHides the source pane and shows the rendered document full width
html previewShows the generated HTML instead of the rendered document
catalogOpens the outline panel built from your headings
Dark mode / Light modeSwitches the editor between light and dark

Reading Without the Source

preview only hides the text pane and gives the rendered document the full width. It is the comfortable way to read a long document, or to show it to somebody.

catalog opens an outline on the right, built from the headings in your file. Click a heading to jump to it.

Light and Dark

The last button on the toolbar switches the editor between light and dark. Your choice is remembered in this browser and applies to every Markdown file you open — it does not affect the rest of Studio, and it is not stored in the model.

Editing, Saving and Versioning

Markdown models follow exactly the same rules as every other model in Studio.

To do thisDo this
Start editingStart Working on the model, as usual
Save your changesSave from the Studio top menu
Finish editingStop Working on the model
Create a versionSave & Version, as with any model
Search across filesUse Find And Replace in the Explorer search area

If a Markdown model is not checked out to you, the editor opens in read-only mode: the text is dimmed and the formatting buttons do nothing. Click Start Working on the model to make it editable.

The character count for the open file is shown at the bottom left of the editor.

What Markdown Files Are Not Used For

Markdown models are documentation, and Studio treats them as such:

  • They are not published and not exported — nothing in a deployed application contains them.
  • They are not referenced by pages, workflows or services. Nothing breaks if you delete one, and Find All References will not list a Markdown file as a dependency of anything.
  • They are not rendered anywhere in a running application.

Everything else about them is normal: they are versioned, they respect module boundaries, and a Markdown file inside a versioned or imported module is read-only just like the other models in it.

Working on Markdown Files From Your Computer

Markdown models sync with Studio CLI like any other text model. After studio pull they appear in your workspace folder as plain .md files, editable in your own editor or by an AI agent, and studio push sends them back into your open Studio session.

This is often the fastest way to write a long document: draft it locally with the tools you already use, push it, and read the result in the preview pane.