Configure a Markdown widget
Apart from the metadata visualizations, your report can include notes or explanations. Configure a Markdown widget and add images, links, tables, and more using the Markdown formatting.
Add a widget
To add a Markdown widget to your report:
-
In the top toolbar, click New widget and select Markdown.
-
To add text, double click the widget.
For supported formatting options, see Syntax reference.
-
To resize the widget, click and drag its bottom right corner.
Export a widget
When ready, you can export the Markdown widget to a new or existing report. To access the export options, open the widget menu ().
Syntax reference
The following formatting options are supported:
Italic
*Italic*
_Italic_
Bold
**Bold**
__Bold__
strikethrough text
~~strikethrough~~ text
Blockquote
> Blockquote
Inline code
Inline `code`
# code block
from neptune_scale import Run
```
# code block
from neptune_scale import Run
```
Heading 1
Heading 2
...# Heading 1
## Heading 2
...
Heading 1
=========
Heading 2
---------
...
Horizontal line
Horizontal line
---
Horizontal line
***
![Image](http://url/a.png)
![Image][1]
...
[1]: http://url/a.png
- List item
- List item
- List item
* List item
* List item
* List item
- List item
- List item
- List item
- First item
- Second item
- Third item
1. First item
2. Second item
3. Third item
1) First item
2) Second item
3) Third item
- Task completed
- Task to do
- [x] Task completed
- [ ] Task to do
Table header | Table header |
---|---|
Cell | Cell |
| Table header | Table header |
| ------------ | ------------ |
| Cell | Cell |