Skip to content

Commit b1356f8

Browse files
committed
Don't lowercase because I do that myself if necessary.
1 parent 48952fc commit b1356f8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/utils.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,9 @@ export function slugifyLine(output, options) {
114114
output = titleCase(output);
115115
}
116116

117-
output = slugify(output, {strict: options.strict});
118-
119117
output = removeLeadingDashes(output);
120118
output = removeTrailingDashes(output);
119+
output = slugify(output, {lowercase: false});
121120

122121
if (options.upperCase) {
123122
output = output.toUpperCase();

0 commit comments

Comments
 (0)