We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2683ba2 commit f38e47eCopy full SHA for f38e47e
src/parser/composer.ts
@@ -11,7 +11,6 @@ import {
11
Phrase,
12
Predicate,
13
Preposition,
14
- Quotation,
15
Sentence,
16
SimpleWordUnit,
17
WordUnit,
@@ -204,10 +203,6 @@ export function sentence(sentence: Sentence): string {
204
203
}
205
return `${text}${sentence.punctuation}`;
206
207
-export function quotation(quotation: Quotation): string {
208
- const text = quotation.sentences.map(sentence).join(" ");
209
- return `${quotation.leftMark}${text}${quotation.rightMark}`;
210
-}
211
export function multipleSentences(sentences: MultipleSentences): string {
212
switch (sentences.type) {
213
case "single word":
0 commit comments