mirror of
https://github.com/coder/code-server.git
synced 2025-08-01 09:05:24 +08:00
chore(vscode): update to 1.56.0
This commit is contained in:
@ -17,6 +17,7 @@ const UNICODE_NEWLINE_REGEX = /\u2028|\u2029/g;
|
||||
interface MarkdownItConfig {
|
||||
readonly breaks: boolean;
|
||||
readonly linkify: boolean;
|
||||
readonly typographer: boolean;
|
||||
}
|
||||
|
||||
class TokenCache {
|
||||
@ -187,7 +188,8 @@ export class MarkdownEngine {
|
||||
const config = vscode.workspace.getConfiguration('markdown', resource);
|
||||
return {
|
||||
breaks: config.get<boolean>('preview.breaks', false),
|
||||
linkify: config.get<boolean>('preview.linkify', true)
|
||||
linkify: config.get<boolean>('preview.linkify', true),
|
||||
typographer: config.get<boolean>('preview.typographer', false)
|
||||
};
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user