Skip to content
This repository was archived by the owner on Jan 7, 2025. It is now read-only.

Commit 0bc4b2e

Browse files
author
Mathias Lindholm
authored
Fix markdown formatting (#77)
* Fix markdown formatting * Generate docs
1 parent 8bef08a commit 0bc4b2e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/slu/speechly.slu.v1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,12 @@ Option to change the default behaviour of the SLU.
9797
Describes an SLU entity.
9898

9999
An entity is a specific object in the phrase that falls into some kind of category,
100-
e.g. in a SAL example "*book book a [burger restaurant](restaurant_type) for [tomorrow](date)"
100+
e.g. in a SAL example `*book book a [burger restaurant](restaurant_type) for [tomorrow](date)`
101101
"burger restaurant" would be an entity of type `restaurant_type`,
102102
and "tomorrow" would be an entity of type `date`.
103103

104104
An entity has a start and end indices which map to the indices of words in SLUTranscript messages,
105-
e.g. in the example "book a [burger restaurant](restaurant_type) for [tomorrow](date)" it would be:
105+
e.g. in the example `*book book a [burger restaurant](restaurant_type) for [tomorrow](date)` it would be:
106106

107107
- Entity "burger restaurant" - `start_position = 2, end_position = 3`
108108
- Entity "tomorrow" - `start_position = 5, end_position = 5`

docs/wlu/speechly.slu.v1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ Top-level message sent by the server for the `Texts` method.
5959
Describes a single entity in a segment.
6060

6161
An entity is a specific object in the phrase that falls into some kind of category,
62-
e.g. in a SAL example "*book book a [burger restaurant](restaurant_type) for [tomorrow](date)"
62+
e.g. in a SAL example `*book book a [burger restaurant](restaurant_type) for [tomorrow](date)`
6363
"burger restaurant" would be an entity of type `restaurant_type`,
6464
and "tomorrow" would be an entity of type `date`.
6565

6666
An entity has a start and end indices which map to the indices of words in WLUToken messages,
67-
e.g. in the example "book a [burger restaurant](restaurant_type) for [tomorrow](date)" it would be:
67+
e.g. in the example `*book book a [burger restaurant](restaurant_type) for [tomorrow](date)` it would be:
6868

6969
- Entity "burger restaurant" - `start_position = 2, end_position = 3`
7070
- Entity "tomorrow" - `start_position = 5, end_position = 5`

proto/speechly/slu/v1/slu.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,12 +203,12 @@ message SLUTranscript {
203203
// Describes an SLU entity.
204204
//
205205
// An entity is a specific object in the phrase that falls into some kind of category,
206-
// e.g. in a SAL example "*book book a [burger restaurant](restaurant_type) for [tomorrow](date)"
206+
// e.g. in a SAL example `*book book a [burger restaurant](restaurant_type) for [tomorrow](date)`
207207
// "burger restaurant" would be an entity of type `restaurant_type`,
208208
// and "tomorrow" would be an entity of type `date`.
209209
//
210210
// An entity has a start and end indices which map to the indices of words in SLUTranscript messages,
211-
// e.g. in the example "book a [burger restaurant](restaurant_type) for [tomorrow](date)" it would be:
211+
// e.g. in the example `*book book a [burger restaurant](restaurant_type) for [tomorrow](date)` it would be:
212212
//
213213
// - Entity "burger restaurant" - `start_position = 2, end_position = 3`
214214
// - Entity "tomorrow" - `start_position = 5, end_position = 5`

proto/speechly/slu/v1/wlu.proto

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,12 @@ message WLUToken {
9393
// Describes a single entity in a segment.
9494
//
9595
// An entity is a specific object in the phrase that falls into some kind of category,
96-
// e.g. in a SAL example "*book book a [burger restaurant](restaurant_type) for [tomorrow](date)"
96+
// e.g. in a SAL example `*book book a [burger restaurant](restaurant_type) for [tomorrow](date)`
9797
// "burger restaurant" would be an entity of type `restaurant_type`,
9898
// and "tomorrow" would be an entity of type `date`.
9999
//
100100
// An entity has a start and end indices which map to the indices of words in WLUToken messages,
101-
// e.g. in the example "book a [burger restaurant](restaurant_type) for [tomorrow](date)" it would be:
101+
// e.g. in the example `*book book a [burger restaurant](restaurant_type) for [tomorrow](date)` it would be:
102102
//
103103
// - Entity "burger restaurant" - `start_position = 2, end_position = 3`
104104
// - Entity "tomorrow" - `start_position = 5, end_position = 5`

0 commit comments

Comments
 (0)