diff --git a/src/panels/lovelace/cards/hui-markdown-card.ts b/src/panels/lovelace/cards/hui-markdown-card.ts index 612b14f3d0..1232a8e0b2 100644 --- a/src/panels/lovelace/cards/hui-markdown-card.ts +++ b/src/panels/lovelace/cards/hui-markdown-card.ts @@ -26,7 +26,10 @@ export class HuiMarkdownCard extends LitElement implements LovelaceCard { } public static getStubConfig(): object { - return { content: " " }; + return { + content: + "The **Markdown** card allows you to write any text. You can style it **bold**, *italicized*, ~strikethrough~ etc. You can do images, links, and more.\n\nFor more information see the [Markdown Cheatsheet](https://commonmark.org/help).", + }; } @property() private _config?: MarkdownCardConfig;