[mod] fix this stupid highlighting lib

This commit is contained in:
Laurent Peuch 2020-05-02 22:11:36 +02:00
parent 60c359c45f
commit 170e7e1d7f

View file

@ -29,7 +29,7 @@ And in json:
```javascript ```javascript
{ {
"name": "the_name", "name": "the_name",
"type": "one_of_the_available_type", # "sting" is not specified "type": "one_of_the_available_type", // "sting" is not specified
"ask": { "ask": {
"en": "the question in english", "en": "the question in english",
"fr": "the question in french" "fr": "the question in french"
@ -38,8 +38,8 @@ And in json:
"en": "some help text in english", "en": "some help text in english",
"fr": "some help text in french" "fr": "some help text in french"
} }
"default", "some stuff", # optional, not available for all types "default", "some stuff", // optional, not available for all types
"example": "an example value" # optional "example": "an example value" // optional
}, },
``` ```
@ -65,12 +65,12 @@ And in json:
```javascript ```javascript
{ {
"name": "the_name", "name": "the_name",
"type": "string", # optional "type": "string", // optional
"ask": { "ask": {
"en": "the question in english", "en": "the question in english",
"fr": "the question in french" "fr": "the question in french"
}, },
"default": "some stuff", # optional "default": "some stuff", // optional
"example": "an example value" "example": "an example value"
}, },
``` ```
@ -103,7 +103,7 @@ And in json:
}, },
"example": "an example value", "example": "an example value",
"choices": ["fr", "en"], "choices": ["fr", "en"],
"default": "en" # optional "default": "en" // optional
}, },
``` ```