vscode/extensions/markdown-language-features/preview-src/strings.ts

16 lines
643 B
TypeScript
Raw Normal View History

2018-03-05 20:06:37 +01:00
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
export function getStrings(): { [key: string]: string } {
2018-03-05 20:13:23 +01:00
const store = document.getElementById('vscode-markdown-preview-data');
if (store) {
const data = store.getAttribute('data-strings');
if (data) {
return JSON.parse(data);
}
}
throw new Error('Could not load strings');
2018-03-05 20:06:37 +01:00
}