Skip to content

Commit c2677ad

Browse files
committed
test/prose: allow Romanian quotes.
1 parent bf4839e commit c2677ad

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/prose

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,9 @@ var prose = unified()
7070
.use(syntaxMentions)
7171
.use(emoji)
7272
.use(sentenceSpacing, {preferred: 1})
73-
.use(quotes, {preferred: 'straight'})
73+
// Hack for Romanian translation:
74+
// https://github.com/github/opensource.guide/pull/1004
75+
.use(quotes, {preferred: 'straight', straight: '”'})
7476
.use(words, {
7577
"patterns": {
7678
"this section": { omit: true },

0 commit comments

Comments
 (0)