2016-04-20 10:03:55 +00:00
|
|
|
---
|
|
|
|
robots: index, follow
|
|
|
|
lang: en
|
|
|
|
dir: ltr
|
|
|
|
breaks: true
|
|
|
|
---
|
|
|
|
|
|
|
|
Supported YAML metadata
|
|
|
|
===
|
|
|
|
|
|
|
|
First you need to insert syntax like this at the **start** of the note:
|
|
|
|
```
|
|
|
|
---
|
|
|
|
YAML metas
|
|
|
|
---
|
|
|
|
```
|
|
|
|
|
|
|
|
Replace the "YAML metas" in this section with any YAML options as below.
|
|
|
|
You can also refer to this note's source code.
|
|
|
|
|
2016-06-21 13:42:03 +00:00
|
|
|
title
|
|
|
|
---
|
|
|
|
This option will set the note title which prior than content title.
|
|
|
|
|
|
|
|
> default: not set
|
|
|
|
|
|
|
|
**Example**
|
|
|
|
```xml
|
|
|
|
title: meta title
|
|
|
|
```
|
|
|
|
|
|
|
|
description
|
|
|
|
---
|
|
|
|
This option will set the note description.
|
|
|
|
|
|
|
|
> default: not set
|
|
|
|
|
|
|
|
**Example**
|
|
|
|
```xml
|
|
|
|
description: meta description
|
|
|
|
```
|
|
|
|
|
|
|
|
tags
|
|
|
|
---
|
|
|
|
This option will set the tags which prior than content tags.
|
|
|
|
|
|
|
|
> default: not set
|
|
|
|
|
|
|
|
**Example**
|
|
|
|
```xml
|
|
|
|
tags: features, cool, updated
|
|
|
|
```
|
|
|
|
|
2016-04-20 10:03:55 +00:00
|
|
|
robots
|
|
|
|
---
|
|
|
|
This option will give below meta in the note head meta:
|
|
|
|
```xml
|
|
|
|
<meta name="robots" content="your_meta">
|
|
|
|
```
|
|
|
|
So you can prevent any search engine index your note by set `noindex, nofollow`.
|
|
|
|
|
2016-06-21 13:42:03 +00:00
|
|
|
> default: not set
|
2016-04-20 10:03:55 +00:00
|
|
|
|
|
|
|
**Example**
|
|
|
|
```xml
|
|
|
|
robots: noindex, nofollow
|
|
|
|
```
|
|
|
|
|
|
|
|
lang
|
|
|
|
---
|
|
|
|
This option will set the language of the note, that might alter some typography of it.
|
|
|
|
You can find your the language code in ISO 639-1 standard:
|
|
|
|
https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
|
|
|
|
|
|
|
|
> default: not set (which will be en)
|
|
|
|
|
|
|
|
**Example**
|
|
|
|
```xml
|
|
|
|
langs: ja-jp
|
|
|
|
```
|
|
|
|
|
|
|
|
dir
|
|
|
|
---
|
|
|
|
This option provide to describe the direction of the text in this note.
|
|
|
|
You can only use whether `rtl` or `ltr`.
|
|
|
|
Look more at here:
|
|
|
|
http://www.w3.org/International/questions/qa-html-dir
|
|
|
|
|
|
|
|
> default: not set (which will be ltr)
|
|
|
|
|
|
|
|
**Example**
|
|
|
|
```xml
|
|
|
|
dir: rtl
|
|
|
|
```
|
|
|
|
|
|
|
|
breaks
|
|
|
|
---
|
|
|
|
This option means the hardbreaks in the note will be parsed or be ignore.
|
|
|
|
The original markdown syntax breaks only if you put space twice, but HackMD choose to breaks every time you enter a break.
|
|
|
|
You can only use whether `true` or `false`.
|
|
|
|
|
|
|
|
> default: not set (which will be true)
|
|
|
|
|
|
|
|
**Example**
|
|
|
|
```xml
|
|
|
|
breaks: false
|
|
|
|
```
|
2016-07-31 16:08:44 +00:00
|
|
|
|
|
|
|
GA
|
|
|
|
---
|
|
|
|
This option allow you to enable Google Analytics with your ID.
|
|
|
|
|
|
|
|
> default: not set (which won't enable)
|
|
|
|
|
|
|
|
**Example**
|
|
|
|
```xml
|
|
|
|
GA: UA-12345667-8
|
|
|
|
```
|
|
|
|
|
2016-08-15 03:25:27 +00:00
|
|
|
disqus
|
|
|
|
---
|
|
|
|
This option allow you to enable Disqus with your shortname.
|
|
|
|
|
|
|
|
> default: not set (which won't enable)
|
|
|
|
|
|
|
|
**Example**
|
|
|
|
```xml
|
|
|
|
disqus: hackmd
|
|
|
|
```
|
|
|
|
|
2016-07-31 16:08:44 +00:00
|
|
|
slideOptions
|
|
|
|
---
|
|
|
|
This option allow you provide custom options to slide mode.
|
|
|
|
Please below document for more details:
|
|
|
|
https://github.com/hakimel/reveal.js/#configuration
|
|
|
|
|
|
|
|
**Notice: always use two spaces as indention in YAML metadata!**
|
|
|
|
|
|
|
|
> default: not set (which use default slide options)
|
|
|
|
|
|
|
|
**Example**
|
|
|
|
```xml
|
|
|
|
slideOptions:
|
|
|
|
transition: fade
|
|
|
|
```
|