Skip to content

Commit ad7c221

Browse files
committed
Added configuration settings for SSML output.
1 parent 204d162 commit ad7c221

11 files changed

+67
-42
lines changed

.vscodeignore

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ images/snippetssample03.gif
1111
images/syntaxhighlights.png
1212
images/intellisense01.gif
1313
images/markdownpref.gif
14+
images/config01.png
1415
tsconfig.json
1516
webpack.config.js
1617
*.ts

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,19 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9-
- Output selected text in SpeechMarkdown output channel
9+
1010
- Known issue with phonemes in ipa tags that include quotes
1111

12+
## [0.0.9] - 2020-07-17
13+
14+
- Removed support for cardinal modifier as it is not supported in SpeechMarkdown
15+
- Output selected text in SpeechMarkdown output channel
16+
- Added four configuration settings:
17+
- speechmarkdown.includeFormatterComment
18+
- speechmarkdown.includeParagraphTags
19+
- speechmarkdown.includeSpeakTags
20+
- speechmarkdown.preserveEmptyLines
21+
1222
## [0.0.8] - 2020-07-14
1323

1424
- Added an editor context menu option which provides SSML that results from selected Speech Markdown text.

README.md

+3-8
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ This extentsion supports snippets, hover-over, syntax highlighting of Speech Mar
1212
- [Hover over](#hover-over)
1313
- [Comprehensive Snippets](#snippets)
1414

15-
16-
<img src="https://raw.githubusercontent.com/speechmarkdown/speechmarkdown-vscode/master/images/smd-demo-1.gif" width="75%" alt="Speech Markdown Visual Studio Code Sample"/>
17-
18-
1915
### Speech Markdown Preview
2016

2117
Speech Markdown outputs platform-compatible Speech Synthesis Markup Language (SSML). Selecting Speech Markdown in an editor, right-clicking and selecting the "Speech Markdown to SSML" menu option provides SSML output for all supported platforms. At the time of this release (v0.0.8) this includes:
@@ -31,6 +27,9 @@ For those that prefer keyboard shortcuts, use Ctrl+Shift+L.
3127

3228
<img src="https://raw.githubusercontent.com/speechmarkdown/speechmarkdown-vscode/master/images/markdownpref.gif" width="75%" alt="Speech Markdown Preview"/>
3329

30+
By default, the starting and ending speak tags are included in the output. This can be disabled in Settings -> Extensions -> SpeechMarkdown -> Include Speak Tags. Here are the current configuration options:
31+
32+
<img src="https://raw.githubusercontent.com/speechmarkdown/speechmarkdown-vscode/master/images/config01.png" width="75%" alt="Configuration"/>
3433

3534
### IntelliSense
3635

@@ -88,10 +87,6 @@ A pause [break:"250ms"] then continue.
8887
```
8988
A pause [250ms] then continue. A longer pause [1s] then continue.
9089
```
91-
- smd cardinal - Speaks a number as a cardinal: one, twenty, twelve thousand three hundred forty five, etc.
92-
```
93-
One, two, (3)[cardinal].
94-
```
9590
- smd characters - Speaks a number or text as individual characters.
9691
```
9792
Countdown: (321)[characters]

images/config01.png

39.4 KB
Loading

images/markdownpref.gif

-2.04 MB
Loading

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+40-13
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"theme": "dark"
1414
},
1515
"license": "MIT",
16-
"version": "0.0.8",
16+
"version": "0.0.9",
1717
"preview": false,
1818
"author": {
1919
"name": "johniwasz"
@@ -36,7 +36,9 @@
3636
"onLanguage:json",
3737
"onLanguage:javascript",
3838
"onLanguage:typescript",
39-
"onLanguage:yaml"
39+
"onLanguage:yaml",
40+
"onLanguage:markdown",
41+
"onLanguage:speechmarkdown"
4042
],
4143
"main": "./dist/extension",
4244
"contributes": {
@@ -63,28 +65,53 @@
6365
"path": "./snippets.json"
6466
}
6567
],
68+
"configuration": {
69+
"title": "SpeechMarkdown",
70+
"properties": {
71+
"speechmarkdown.includeSpeakTags": {
72+
"type": "boolean",
73+
"default": true,
74+
"description": "Include open and close speech tags around generated SSML."
75+
},
76+
"speechmarkdown.includeParagraphTags": {
77+
"type": "boolean",
78+
"default": false,
79+
"description": "Include paragraph tags in generated SSML."
80+
},
81+
"speechmarkdown.includeFormatterComment": {
82+
"type": "boolean",
83+
"default": false,
84+
"description": "Include formatter comments in generated SSML."
85+
},
86+
"speechmarkdown.preserveEmptyLines": {
87+
"type": "boolean",
88+
"default": false,
89+
"description": "Keep empty lines in generated SSML."
90+
}
91+
}
92+
},
6693
"keybindings": [
6794
{
6895
"command": "extension.speechmarkdownpreview",
69-
"key": "ctrl+shift+l",
96+
"key": "ctrl+shift+l",
7097
"when": "editorHasSelection"
7198
}
7299
],
73100
"commands": [
74101
{
75-
"command": "extension.speechmarkdownpreview",
76-
"title": "Speech Markdown to SSML",
77-
"category": "Speech Markdown"
102+
"command": "extension.speechmarkdownpreview",
103+
"title": "Speech Markdown to SSML",
104+
"category": "Speech Markdown"
78105
}
79106
],
80107
"menus": {
81-
"editor/context": [
82-
{
83-
"command": "extension.speechmarkdownpreview",
84-
"group": "speechmarkdown@1",
85-
"when": "editorHasSelection"
86-
}
87-
]
108+
"editor/context": [
109+
{
110+
"command": "extension.speechmarkdownpreview",
111+
"group": "speechmarkdown@1",
112+
"when": "editorHasSelection"
113+
}
114+
]
88115
},
89116
"languages": [
90117
{

snippets.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,6 @@
6969
"body": "(${TM_SELECTED_TEXT})[address]",
7070
"description": "Speaks the selected text as a street address."
7171
},
72-
"cardinal": {
73-
"prefix": "smd cardinal",
74-
"body": "(${TM_SELECTED_TEXT})[cardinal]",
75-
"description": "Speaks a number as a cardinal: one, twenty, twelve thousand three hundred forty five, etc."
76-
},
7772
"expletive": {
7873
"prefix": "smd expletive",
7974
"body": "(${TM_SELECTED_TEXT})[expletive]",
@@ -142,7 +137,7 @@
142137
"number": {
143138
"prefix": "smd number",
144139
"body": "(${TM_SELECTED_TEXT})[number]",
145-
"description": "Speaks a number as a cardinal: one, twenty, twelve thousand three hundred forty five, etc. (same as cardinal)"
140+
"description": "Speaks a number as a cardinal: one, twenty, twelve thousand three hundred forty five, etc."
146141
},
147142
"break ms": {
148143
"prefix": "smd break short",

src/hoverInfo.ts

-7
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,6 @@ export var hoverInfoArr: SPHoverInfo[] = [
130130
true,
131131
false
132132
),
133-
new SPHoverInfo(
134-
[new SPElement("cardinal", [ new SPSnippet("cardinal", "cardinal", true, false, false, false)]), new SPElement("number", [ new SPSnippet("number", "number", true, false, false, false)])],
135-
"Speaks a number as a cardinal: one, twenty, twelve thousand three hundred forty five, etc. \n \n ```text \n One, two, (3)[cardinal]. \n Your balance is: (12345)[cardinal]. \n (801)[cardinal] is the same as (801)[number] \n ```",
136-
true,
137-
true,
138-
false
139-
),
140133
new SPHoverInfo(
141134
[new SPElement("characters", [new SPSnippet("characters", "characters", true, false, false, false)])],
142135
"Speaks a number or text as individual characters. \n ```text \n Countdown: (321)[characters] \n The word is spelled: (park)[chars] \n ```",

src/smdOutputProvider.ts

+8-4
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,13 @@ export default class {
1414
const speech = new SpeechMarkdown();
1515

1616
let speechOpts : SpeechOptions = { platform: "amazon-alexa" };
17-
speechOpts.includeSpeakTag = false;
18-
19-
var output : string = 'Speech Mardown text: \n';
17+
18+
speechOpts.includeParagraphTag = <boolean>vscode.workspace.getConfiguration().get('speechmarkdown.includeParagraphTags');
19+
speechOpts.includeSpeakTag = <boolean>vscode.workspace.getConfiguration().get('speechmarkdown.includeSpeakTags');
20+
speechOpts.includeFormatterComment = <boolean>vscode.workspace.getConfiguration().get('speechmarkdown.includeFormatterComment');
21+
speechOpts.preserveEmptyLines = <boolean>vscode.workspace.getConfiguration().get('speechmarkdown.preserveEmptyLines');
22+
23+
var output : string = 'Speech Mardown text: \n';
2024

2125
if(smdText.length == 0)
2226
{
@@ -39,7 +43,7 @@ export default class {
3943
speechOut = ex;
4044
}
4145

42-
output +='\n\nAlexa: \n';
46+
output +='\nAlexa: \n';
4347
output +=speechOut;
4448
output +='\n';
4549

syntaxes/text.speechmarkdown.injection.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@
183183
}
184184
},
185185
"simple-modifier-expression": {
186-
"match": "(\\()([^)]+)(\\))(\\[)(address|cardinal|characters|bleep|expletive|fraction|interjection|number|ordinal|unit|whisper)(\\])",
186+
"match": "(\\()([^)]+)(\\))(\\[)(address|characters|bleep|expletive|fraction|interjection|number|ordinal|unit|whisper)(\\])",
187187
"name": "meta.modifier.simple.speechmarkdown",
188188
"captures": {
189189
"1": { "name": "meta.embedded.meta.brace.round.speechmarkdown" },
@@ -351,7 +351,7 @@
351351
}
352352
},
353353
{
354-
"match": "(address|cardinal|characters|bleep|expletive|fraction|interjection|number|ordinal|unit|whisper)",
354+
"match": "(address|characters|bleep|expletive|fraction|interjection|number|ordinal|unit|whisper)",
355355
"name": "meta.modifier.simple.speechmarkdown",
356356
"captures": {
357357
"1": { "name": "entity.name.function.speechmarkdown.modifier" }

0 commit comments

Comments
 (0)