diff --git a/umap/static/umap/css/dialog.css b/umap/static/umap/css/dialog.css
index f608b97e..b3dcf0ff 100644
--- a/umap/static/umap/css/dialog.css
+++ b/umap/static/umap/css/dialog.css
@@ -14,6 +14,9 @@
height: fit-content;
max-height: 90vh;
}
+.umap-dialog ul + h4 {
+ margin-top: var(--box-margin);
+}
:where([data-component="no-dialog"]:not([hidden])) {
display: block;
position: relative;
diff --git a/umap/static/umap/js/modules/help.js b/umap/static/umap/js/modules/help.js
index 61ea1131..5d396a79 100644
--- a/umap/static/umap/js/modules/help.js
+++ b/umap/static/umap/js/modules/help.js
@@ -135,14 +135,23 @@ const ENTRIES = {
${translate('# one hash for main heading')}
${translate('## two hashes for second heading')}
${translate('### three hashes for third heading')}
+ ${translate('--- for a horizontal rule')}
+
+ ${translate('Links')}
+
- ${translate('Simple link: [[https://example.com]]')}
- ${translate('Link with text: [[https://example.com|text of the link]]')}
+
+ ${translate('Images')}
+
- ${translate('Image: {{https://image.url.com}}')}
- ${translate('Image with custom width (in px): {{https://image.url.com|width}}')}
+
+ ${translate('Iframes')}
+
- ${translate('Iframe: {{{https://iframe.url.com}}}')}
- ${translate('Iframe with custom height (in px): {{{https://iframe.url.com|height}}}')}
- ${translate('Iframe with custom height and width (in px): {{{https://iframe.url.com|height*width}}}')}
- - ${translate('--- for a horizontal rule')}
`,