mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-16 07:58:58 +00:00

* Fix configuration descriptions * Fix syntax * Minor changes * Other fixes * Update configuration description * Check syntax * Remove {% configuration %}
45 lines
975 B
Markdown
45 lines
975 B
Markdown
---
|
|
layout: page
|
|
title: "Markdown Card"
|
|
sidebar_label: Markdown
|
|
description: "Markdown card is used to render markdown"
|
|
date: 2018-07-01 10:28 +00:00
|
|
sidebar: true
|
|
comments: false
|
|
sharing: true
|
|
footer: true
|
|
---
|
|
|
|
Markdown card is used to render [markdown](http://commonmark.org/help/).
|
|
|
|
<p class='img'>
|
|
<img src='/images/lovelace/lovelace_markdown.png' alt='Screenshot of the markdown card'>
|
|
Screenshot of the markdown card.
|
|
</p>
|
|
|
|
{% configuration %}
|
|
type:
|
|
required: true
|
|
description: markdown
|
|
type: string
|
|
content:
|
|
required: true
|
|
description: "Content to render as [markdown](http://commonmark.org/help/)."
|
|
type: string
|
|
title:
|
|
required: false
|
|
description: The card title.
|
|
type: string
|
|
default: none
|
|
{% endconfiguration %}
|
|
|
|
## {% linkable_title Example %}
|
|
|
|
```yaml
|
|
- type: markdown
|
|
content: >
|
|
## Lovelace
|
|
|
|
Starting with Home Assistant 0.72, we're experimenting with a new way of defining your interface. We're calling it the **Lovelace UI**.
|
|
```
|