-
-
Notifications
You must be signed in to change notification settings - Fork 205
/
extension.js
901 lines (813 loc) · 30.3 KB
/
extension.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
'use strict';
var vscode = require('vscode');
var path = require('path');
var fs = require('fs');
var url = require('url');
var os = require('os');
var INSTALL_CHECK = false;
function activate(context) {
init();
var commands = [
vscode.commands.registerCommand('extension.markdown-pdf.settings', async function () { await markdownPdf('settings'); }),
vscode.commands.registerCommand('extension.markdown-pdf.pdf', async function () { await markdownPdf('pdf'); }),
vscode.commands.registerCommand('extension.markdown-pdf.html', async function () { await markdownPdf('html'); }),
vscode.commands.registerCommand('extension.markdown-pdf.png', async function () { await markdownPdf('png'); }),
vscode.commands.registerCommand('extension.markdown-pdf.jpeg', async function () { await markdownPdf('jpeg'); }),
vscode.commands.registerCommand('extension.markdown-pdf.all', async function () { await markdownPdf('all'); })
];
commands.forEach(function (command) {
context.subscriptions.push(command);
});
var isConvertOnSave = vscode.workspace.getConfiguration('markdown-pdf')['convertOnSave'];
if (isConvertOnSave) {
var disposable_onsave = vscode.workspace.onDidSaveTextDocument(function () { markdownPdfOnSave(); });
context.subscriptions.push(disposable_onsave);
}
}
exports.activate = activate;
// this method is called when your extension is deactivated
function deactivate() {
}
exports.deactivate = deactivate;
async function markdownPdf(option_type) {
try {
// check active window
var editor = vscode.window.activeTextEditor;
if (!editor) {
vscode.window.showWarningMessage('No active Editor!');
return;
}
// check markdown mode
var mode = editor.document.languageId;
if (mode != 'markdown') {
vscode.window.showWarningMessage('It is not a markdown mode!');
return;
}
var uri = editor.document.uri;
var mdfilename = uri.fsPath;
var ext = path.extname(mdfilename);
if (!isExistsPath(mdfilename)) {
if (editor.document.isUntitled) {
vscode.window.showWarningMessage('Please save the file!');
return;
}
vscode.window.showWarningMessage('File name does not get!');
return;
}
var types_format = ['html', 'pdf', 'png', 'jpeg'];
var filename = '';
var types = [];
if (types_format.indexOf(option_type) >= 0) {
types[0] = option_type;
} else if (option_type === 'settings') {
var types_tmp = vscode.workspace.getConfiguration('markdown-pdf')['type'] || 'pdf';
if (types_tmp && !Array.isArray(types_tmp)) {
types[0] = types_tmp;
} else {
types = vscode.workspace.getConfiguration('markdown-pdf')['type'] || 'pdf';
}
} else if (option_type === 'all') {
types = types_format;
} else {
showErrorMessage('markdownPdf().1 Supported formats: html, pdf, png, jpeg.');
return;
}
// convert and export markdown to pdf, html, png, jpeg
if (types && Array.isArray(types) && types.length > 0) {
for (var i = 0; i < types.length; i++) {
var type = types[i];
if (types_format.indexOf(type) >= 0) {
filename = mdfilename.replace(ext, '.' + type);
var text = editor.document.getText();
var content = convertMarkdownToHtml(mdfilename, type, text);
var html = makeHtml(content, uri);
await exportPdf(html, filename, type, uri);
} else {
showErrorMessage('markdownPdf().2 Supported formats: html, pdf, png, jpeg.');
return;
}
}
} else {
showErrorMessage('markdownPdf().3 Supported formats: html, pdf, png, jpeg.');
return;
}
} catch (error) {
showErrorMessage('markdownPdf()', error);
}
}
function markdownPdfOnSave() {
try {
var editor = vscode.window.activeTextEditor;
var mode = editor.document.languageId;
if (mode != 'markdown') {
return;
}
if (!isMarkdownPdfOnSaveExclude()) {
markdownPdf('settings');
}
} catch (error) {
showErrorMessage('markdownPdfOnSave()', error);
}
}
function isMarkdownPdfOnSaveExclude() {
try{
var editor = vscode.window.activeTextEditor;
var filename = path.basename(editor.document.fileName);
var patterns = vscode.workspace.getConfiguration('markdown-pdf')['convertOnSaveExclude'] || '';
var pattern;
var i;
if (patterns && Array.isArray(patterns) && patterns.length > 0) {
for (i = 0; i < patterns.length; i++) {
pattern = patterns[i];
var re = new RegExp(pattern);
if (re.test(filename)) {
return true;
}
}
}
return false;
} catch (error) {
showErrorMessage('isMarkdownPdfOnSaveExclude()', error);
}
}
/*
* convert markdown to html (markdown-it)
*/
function convertMarkdownToHtml(filename, type, text) {
var grayMatter = require("gray-matter");
var matterParts = grayMatter(text);
try {
try {
var statusbarmessage = vscode.window.setStatusBarMessage('$(markdown) Converting (convertMarkdownToHtml) ...');
var hljs = require('highlight.js');
var breaks = setBooleanValue(matterParts.data.breaks, vscode.workspace.getConfiguration('markdown-pdf')['breaks']);
var md = require('markdown-it')({
html: true,
breaks: breaks,
highlight: function (str, lang) {
if (lang && lang.match(/\bmermaid\b/i)) {
return `<div class="mermaid">${str}</div>`;
}
if (lang && hljs.getLanguage(lang)) {
try {
str = hljs.highlight(lang, str, true).value;
} catch (error) {
str = md.utils.escapeHtml(str);
showErrorMessage('markdown-it:highlight', error);
}
} else {
str = md.utils.escapeHtml(str);
}
return '<pre class="hljs"><code><div>' + str + '</div></code></pre>';
}
});
} catch (error) {
statusbarmessage.dispose();
showErrorMessage('require(\'markdown-it\')', error);
}
// convert the img src of the markdown
var cheerio = require('cheerio');
var defaultRender = md.renderer.rules.image;
md.renderer.rules.image = function (tokens, idx, options, env, self) {
var token = tokens[idx];
var href = token.attrs[token.attrIndex('src')][1];
// console.log("original href: " + href);
if (type === 'html') {
href = decodeURIComponent(href).replace(/("|')/g, '');
} else {
href = convertImgPath(href, filename);
}
// console.log("converted href: " + href);
token.attrs[token.attrIndex('src')][1] = href;
// // pass token to default renderer.
return defaultRender(tokens, idx, options, env, self);
};
if (type !== 'html') {
// convert the img src of the html
md.renderer.rules.html_block = function (tokens, idx) {
var html = tokens[idx].content;
var $ = cheerio.load(html);
$('img').each(function () {
var src = $(this).attr('src');
var href = convertImgPath(src, filename);
$(this).attr('src', href);
});
return $.html();
};
}
// checkbox
md.use(require('markdown-it-checkbox'));
// emoji
var emoji_f = setBooleanValue(matterParts.data.emoji, vscode.workspace.getConfiguration('markdown-pdf')['emoji']);
if (emoji_f) {
var emojies_defs = require(path.join(__dirname, 'data', 'emoji.json'));
try {
var options = {
defs: emojies_defs
};
} catch (error) {
statusbarmessage.dispose();
showErrorMessage('markdown-it-emoji:options', error);
}
md.use(require('markdown-it-emoji'), options);
md.renderer.rules.emoji = function (token, idx) {
var emoji = token[idx].markup;
var emojipath = path.join(__dirname, 'node_modules', 'emoji-images', 'pngs', emoji + '.png');
var emojidata = readFile(emojipath, null).toString('base64');
if (emojidata) {
return '<img class="emoji" alt="' + emoji + '" src="data:image/png;base64,' + emojidata + '" />';
} else {
return ':' + emoji + ':';
}
};
}
// toc
// https://github.com/leff/markdown-it-named-headers
var options = {
slugify: Slug
}
md.use(require('markdown-it-named-headers'), options);
// markdown-it-container
// https://github.com/markdown-it/markdown-it-container
md.use(require('markdown-it-container'), '', {
validate: function (name) {
return name.trim().length;
},
render: function (tokens, idx) {
if (tokens[idx].info.trim() !== '') {
return `<div class="${tokens[idx].info.trim()}">\n`;
} else {
return `</div>\n`;
}
}
});
// PlantUML
// https://github.com/gmunguia/markdown-it-plantuml
var plantumlOptions = {
openMarker: matterParts.data.plantumlOpenMarker || vscode.workspace.getConfiguration('markdown-pdf')['plantumlOpenMarker'] || '@startuml',
closeMarker: matterParts.data.plantumlCloseMarker || vscode.workspace.getConfiguration('markdown-pdf')['plantumlCloseMarker'] || '@enduml',
server: vscode.workspace.getConfiguration('markdown-pdf')['plantumlServer'] || ''
}
md.use(require('markdown-it-plantuml'), plantumlOptions);
// markdown-it-include
// https://github.com/camelaissani/markdown-it-include
// the syntax is :[alt-text](relative-path-to-file.md)
// https://talk.commonmark.org/t/transclusion-or-including-sub-documents-for-reuse/270/13
if (vscode.workspace.getConfiguration('markdown-pdf')['markdown-it-include']['enable']) {
md.use(require("markdown-it-include"), {
root: path.dirname(filename),
includeRe: /:\[.+\]\((.+\..+)\)/i
});
}
statusbarmessage.dispose();
return md.render(matterParts.content);
} catch (error) {
statusbarmessage.dispose();
showErrorMessage('convertMarkdownToHtml()', error);
}
}
/*
* https://github.com/microsoft/vscode/blob/ca4ceeb87d4ff935c52a7af0671ed9779657e7bd/extensions/markdown-language-features/src/slugify.ts#L26
*/
function Slug(string) {
try {
var stg = encodeURI(
string.trim()
.toLowerCase()
.replace(/\s+/g, '-') // Replace whitespace with -
.replace(/[\]\[\!\'\#\$\%\&\(\)\*\+\,\.\/\:\;\<\=\>\?\@\\\^\_\{\|\}\~\`。,、;:?!…—·ˉ¨‘’“”々~‖∶"'`|〃〔〕〈〉《》「」『』.〖〗【】()[]{}]/g, '') // Remove known punctuators
.replace(/^\-+/, '') // Remove leading -
.replace(/\-+$/, '') // Remove trailing -
);
return stg;
} catch (error) {
showErrorMessage('Slug()', error);
}
}
/*
* make html
*/
function makeHtml(data, uri) {
try {
// read styles
var style = '';
style += readStyles(uri);
// get title
var title = path.basename(uri.fsPath);
// read template
var filename = path.join(__dirname, 'template', 'template.html');
var template = readFile(filename);
// read mermaid javascripts
var mermaidServer = vscode.workspace.getConfiguration('markdown-pdf')['mermaidServer'] || '';
var mermaid = '<script src=\"' + mermaidServer + '\"></script>';
// compile template
var mustache = require('mustache');
var view = {
title: title,
style: style,
content: data,
mermaid: mermaid
};
return mustache.render(template, view);
} catch (error) {
showErrorMessage('makeHtml()', error);
}
}
/*
* export a html to a html file
*/
function exportHtml(data, filename) {
fs.writeFile(filename, data, 'utf-8', function (error) {
if (error) {
showErrorMessage('exportHtml()', error);
return;
}
});
}
/*
* export a html to a pdf file (html-pdf)
*/
function exportPdf(data, filename, type, uri) {
if (!INSTALL_CHECK) {
return;
}
if (!checkPuppeteerBinary()) {
showErrorMessage('Chromium or Chrome does not exist! \
See https://github.com/yzane/vscode-markdown-pdf#install');
return;
}
var StatusbarMessageTimeout = vscode.workspace.getConfiguration('markdown-pdf')['StatusbarMessageTimeout'];
vscode.window.setStatusBarMessage('');
var exportFilename = getOutputDir(filename, uri);
return vscode.window.withProgress({
location: vscode.ProgressLocation.Notification,
title: '[Markdown PDF]: Exporting (' + type + ') ...'
}, async () => {
try {
// export html
if (type == 'html') {
exportHtml(data, exportFilename);
vscode.window.setStatusBarMessage('$(markdown) ' + exportFilename, StatusbarMessageTimeout);
return;
}
const puppeteer = require('puppeteer-core');
// create temporary file
var f = path.parse(filename);
var tmpfilename = path.join(f.dir, f.name + '_tmp.html');
exportHtml(data, tmpfilename);
var options = {
executablePath: vscode.workspace.getConfiguration('markdown-pdf')['executablePath'] || puppeteer.executablePath(),
args: ['--lang='+vscode.env.language, '--no-sandbox', '--disable-setuid-sandbox']
// Setting Up Chrome Linux Sandbox
// https://github.com/puppeteer/puppeteer/blob/master/docs/troubleshooting.md#setting-up-chrome-linux-sandbox
};
const browser = await puppeteer.launch(options);
const page = await browser.newPage();
await page.setDefaultTimeout(0);
await page.goto(vscode.Uri.file(tmpfilename).toString(), { waitUntil: 'networkidle0' });
// generate pdf
// https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pagepdfoptions
if (type == 'pdf') {
// If width or height option is set, it overrides the format option.
// In order to set the default value of page size to A4, we changed it from the specification of puppeteer.
var width_option = vscode.workspace.getConfiguration('markdown-pdf', uri)['width'] || '';
var height_option = vscode.workspace.getConfiguration('markdown-pdf', uri)['height'] || '';
var format_option = '';
if (!width_option && !height_option) {
format_option = vscode.workspace.getConfiguration('markdown-pdf', uri)['format'] || 'A4';
}
var landscape_option;
if (vscode.workspace.getConfiguration('markdown-pdf', uri)['orientation'] == 'landscape') {
landscape_option = true;
} else {
landscape_option = false;
}
var options = {
path: exportFilename,
scale: vscode.workspace.getConfiguration('markdown-pdf', uri)['scale'],
displayHeaderFooter: vscode.workspace.getConfiguration('markdown-pdf', uri)['displayHeaderFooter'],
headerTemplate: transformTemplate(vscode.workspace.getConfiguration('markdown-pdf', uri)['headerTemplate'] || ''),
footerTemplate: transformTemplate(vscode.workspace.getConfiguration('markdown-pdf', uri)['footerTemplate'] || ''),
printBackground: vscode.workspace.getConfiguration('markdown-pdf', uri)['printBackground'],
landscape: landscape_option,
pageRanges: vscode.workspace.getConfiguration('markdown-pdf', uri)['pageRanges'] || '',
format: format_option,
width: vscode.workspace.getConfiguration('markdown-pdf', uri)['width'] || '',
height: vscode.workspace.getConfiguration('markdown-pdf', uri)['height'] || '',
margin: {
top: vscode.workspace.getConfiguration('markdown-pdf', uri)['margin']['top'] || '',
right: vscode.workspace.getConfiguration('markdown-pdf', uri)['margin']['right'] || '',
bottom: vscode.workspace.getConfiguration('markdown-pdf', uri)['margin']['bottom'] || '',
left: vscode.workspace.getConfiguration('markdown-pdf', uri)['margin']['left'] || ''
},
timeout: 0
};
await page.pdf(options);
}
// generate png and jpeg
// https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pagescreenshotoptions
if (type == 'png' || type == 'jpeg') {
// Quality options do not apply to PNG images.
var quality_option;
if (type == 'png') {
quality_option = undefined;
}
if (type == 'jpeg') {
quality_option = vscode.workspace.getConfiguration('markdown-pdf')['quality'] || 100;
}
// screenshot size
var clip_x_option = vscode.workspace.getConfiguration('markdown-pdf')['clip']['x'] || null;
var clip_y_option = vscode.workspace.getConfiguration('markdown-pdf')['clip']['y'] || null;
var clip_width_option = vscode.workspace.getConfiguration('markdown-pdf')['clip']['width'] || null;
var clip_height_option = vscode.workspace.getConfiguration('markdown-pdf')['clip']['height'] || null;
var options;
if (clip_x_option !== null && clip_y_option !== null && clip_width_option !== null && clip_height_option !== null) {
options = {
path: exportFilename,
quality: quality_option,
fullPage: false,
clip: {
x: clip_x_option,
y: clip_y_option,
width: clip_width_option,
height: clip_height_option,
},
omitBackground: vscode.workspace.getConfiguration('markdown-pdf')['omitBackground'],
}
} else {
options = {
path: exportFilename,
quality: quality_option,
fullPage: true,
omitBackground: vscode.workspace.getConfiguration('markdown-pdf')['omitBackground'],
}
}
await page.screenshot(options);
}
await browser.close();
// delete temporary file
var debug = vscode.workspace.getConfiguration('markdown-pdf')['debug'] || false;
if (!debug) {
if (isExistsPath(tmpfilename)) {
deleteFile(tmpfilename);
}
}
vscode.window.setStatusBarMessage('$(markdown) ' + exportFilename, StatusbarMessageTimeout);
} catch (error) {
showErrorMessage('exportPdf()', error);
}
} // async
); // vscode.window.withProgress
}
/**
* Transform the text of the header or footer template, replacing the following supported placeholders:
*
* - `%%ISO-DATETIME%%` – For an ISO-based date and time format: `YYYY-MM-DD hh:mm:ss`
* - `%%ISO-DATE%%` – For an ISO-based date format: `YYYY-MM-DD`
* - `%%ISO-TIME%%` – For an ISO-based time format: `hh:mm:ss`
*/
function transformTemplate(templateText) {
if (templateText.indexOf('%%ISO-DATETIME%%') !== -1) {
templateText = templateText.replace('%%ISO-DATETIME%%', new Date().toISOString().substr(0, 19).replace('T', ' '));
}
if (templateText.indexOf('%%ISO-DATE%%') !== -1) {
templateText = templateText.replace('%%ISO-DATE%%', new Date().toISOString().substr(0, 10));
}
if (templateText.indexOf('%%ISO-TIME%%') !== -1) {
templateText = templateText.replace('%%ISO-TIME%%', new Date().toISOString().substr(11, 8));
}
return templateText;
}
function isExistsPath(path) {
if (path.length === 0) {
return false;
}
try {
fs.accessSync(path);
return true;
} catch (error) {
console.warn(error.message);
return false;
}
}
function isExistsDir(dirname) {
if (dirname.length === 0) {
return false;
}
try {
if (fs.statSync(dirname).isDirectory()) {
return true;
} else {
console.warn('Directory does not exist!') ;
return false;
}
} catch (error) {
console.warn(error.message);
return false;
}
}
function deleteFile (path) {
var rimraf = require('rimraf')
rimraf.sync(path);
}
function getOutputDir(filename, resource) {
try {
var outputDir;
if (resource === undefined) {
return filename;
}
var outputDirectory = vscode.workspace.getConfiguration('markdown-pdf')['outputDirectory'] || '';
if (outputDirectory.length === 0) {
return filename;
}
// Use a home directory relative path If it starts with ~.
if (outputDirectory.indexOf('~') === 0) {
outputDir = outputDirectory.replace(/^~/, os.homedir());
mkdir(outputDir);
return path.join(outputDir, path.basename(filename));
}
// Use path if it is absolute
if (path.isAbsolute(outputDirectory)) {
if (!isExistsDir(outputDirectory)) {
showErrorMessage(`The output directory specified by the markdown-pdf.outputDirectory option does not exist.\
Check the markdown-pdf.outputDirectory option. ` + outputDirectory);
return;
}
return path.join(outputDirectory, path.basename(filename));
}
// Use a workspace relative path if there is a workspace and markdown-pdf.outputDirectoryRootPath = workspace
var outputDirectoryRelativePathFile = vscode.workspace.getConfiguration('markdown-pdf')['outputDirectoryRelativePathFile'];
let root = vscode.workspace.getWorkspaceFolder(resource);
if (outputDirectoryRelativePathFile === false && root) {
outputDir = path.join(root.uri.fsPath, outputDirectory);
mkdir(outputDir);
return path.join(outputDir, path.basename(filename));
}
// Otherwise look relative to the markdown file
outputDir = path.join(path.dirname(resource.fsPath), outputDirectory);
mkdir(outputDir);
return path.join(outputDir, path.basename(filename));
} catch (error) {
showErrorMessage('getOutputDir()', error);
}
}
function mkdir(path) {
if (isExistsDir(path)) {
return;
}
var mkdirp = require('mkdirp');
return mkdirp.sync(path);
}
function readFile(filename, encode) {
if (filename.length === 0) {
return '';
}
if (!encode && encode !== null) {
encode = 'utf-8';
}
if (filename.indexOf('file://') === 0) {
if (process.platform === 'win32') {
filename = filename.replace(/^file:\/\/\//, '')
.replace(/^file:\/\//, '');
} else {
filename = filename.replace(/^file:\/\//, '');
}
}
if (isExistsPath(filename)) {
return fs.readFileSync(filename, encode);
} else {
return '';
}
}
function convertImgPath(src, filename) {
try {
var href = decodeURIComponent(src);
href = href.replace(/("|')/g, '')
.replace(/\\/g, '/')
.replace(/#/g, '%23');
var protocol = url.parse(href).protocol;
if (protocol === 'file:' && href.indexOf('file:///') !==0) {
return href.replace(/^file:\/\//, 'file:///');
} else if (protocol === 'file:') {
return href;
} else if (!protocol || path.isAbsolute(href)) {
href = path.resolve(path.dirname(filename), href).replace(/\\/g, '/')
.replace(/#/g, '%23');
if (href.indexOf('//') === 0) {
return 'file:' + href;
} else if (href.indexOf('/') === 0) {
return 'file://' + href;
} else {
return 'file:///' + href;
}
} else {
return src;
}
} catch (error) {
showErrorMessage('convertImgPath()', error);
}
}
function makeCss(filename) {
try {
var css = readFile(filename);
if (css) {
return '\n<style>\n' + css + '\n</style>\n';
} else {
return '';
}
} catch (error) {
showErrorMessage('makeCss()', error);
}
}
function readStyles(uri) {
try {
var includeDefaultStyles;
var style = '';
var styles = '';
var filename = '';
var i;
includeDefaultStyles = vscode.workspace.getConfiguration('markdown-pdf')['includeDefaultStyles'];
// 1. read the style of the vscode.
if (includeDefaultStyles) {
filename = path.join(__dirname, 'styles', 'markdown.css');
style += makeCss(filename);
}
// 2. read the style of the markdown.styles setting.
if (includeDefaultStyles) {
styles = vscode.workspace.getConfiguration('markdown')['styles'];
if (styles && Array.isArray(styles) && styles.length > 0) {
for (i = 0; i < styles.length; i++) {
var href = fixHref(uri, styles[i]);
style += '<link rel=\"stylesheet\" href=\"' + href + '\" type=\"text/css\">';
}
}
}
// 3. read the style of the highlight.js.
var highlightStyle = vscode.workspace.getConfiguration('markdown-pdf')['highlightStyle'] || '';
var ishighlight = vscode.workspace.getConfiguration('markdown-pdf')['highlight'];
if (ishighlight) {
if (highlightStyle) {
var css = vscode.workspace.getConfiguration('markdown-pdf')['highlightStyle'] || 'github.css';
filename = path.join(__dirname, 'node_modules', 'highlight.js', 'styles', css);
style += makeCss(filename);
} else {
filename = path.join(__dirname, 'styles', 'tomorrow.css');
style += makeCss(filename);
}
}
// 4. read the style of the markdown-pdf.
if (includeDefaultStyles) {
filename = path.join(__dirname, 'styles', 'markdown-pdf.css');
style += makeCss(filename);
}
// 5. read the style of the markdown-pdf.styles settings.
styles = vscode.workspace.getConfiguration('markdown-pdf')['styles'] || '';
if (styles && Array.isArray(styles) && styles.length > 0) {
for (i = 0; i < styles.length; i++) {
var href = fixHref(uri, styles[i]);
style += '<link rel=\"stylesheet\" href=\"' + href + '\" type=\"text/css\">';
}
}
return style;
} catch (error) {
showErrorMessage('readStyles()', error);
}
}
/*
* vscode/extensions/markdown-language-features/src/features/previewContentProvider.ts fixHref()
* https://github.com/Microsoft/vscode/blob/0c47c04e85bc604288a288422f0a7db69302a323/extensions/markdown-language-features/src/features/previewContentProvider.ts#L95
*
* Extension Authoring: Adopting Multi Root Workspace APIs ?E Microsoft/vscode Wiki
* https://github.com/Microsoft/vscode/wiki/Extension-Authoring:-Adopting-Multi-Root-Workspace-APIs
*/
function fixHref(resource, href) {
try {
if (!href) {
return href;
}
// Use href if it is already an URL
const hrefUri = vscode.Uri.parse(href);
if (['http', 'https'].indexOf(hrefUri.scheme) >= 0) {
return hrefUri.toString();
}
// Use a home directory relative path If it starts with ^.
if (href.indexOf('~') === 0) {
return vscode.Uri.file(href.replace(/^~/, os.homedir())).toString();
}
// Use href as file URI if it is absolute
if (path.isAbsolute(href)) {
return vscode.Uri.file(href).toString();
}
// Use a workspace relative path if there is a workspace and markdown-pdf.stylesRelativePathFile is false
var stylesRelativePathFile = vscode.workspace.getConfiguration('markdown-pdf')['stylesRelativePathFile'];
let root = vscode.workspace.getWorkspaceFolder(resource);
if (stylesRelativePathFile === false && root) {
return vscode.Uri.file(path.join(root.uri.fsPath, href)).toString();
}
// Otherwise look relative to the markdown file
return vscode.Uri.file(path.join(path.dirname(resource.fsPath), href)).toString();
} catch (error) {
showErrorMessage('fixHref()', error);
}
}
function checkPuppeteerBinary() {
try {
// settings.json
var executablePath = vscode.workspace.getConfiguration('markdown-pdf')['executablePath'] || ''
if (isExistsPath(executablePath)) {
INSTALL_CHECK = true;
return true;
}
// bundled Chromium
const puppeteer = require('puppeteer-core');
executablePath = puppeteer.executablePath();
if (isExistsPath(executablePath)) {
return true;
} else {
return false;
}
} catch (error) {
showErrorMessage('checkPuppeteerBinary()', error);
}
}
/*
* puppeteer install.js
* https://github.com/GoogleChrome/puppeteer/blob/master/install.js
*/
function installChromium() {
try {
vscode.window.showInformationMessage('[Markdown PDF] Installing Chromium ...');
var statusbarmessage = vscode.window.setStatusBarMessage('$(markdown) Installing Chromium ...');
// proxy setting
setProxy();
var StatusbarMessageTimeout = vscode.workspace.getConfiguration('markdown-pdf')['StatusbarMessageTimeout'];
const puppeteer = require('puppeteer-core');
const browserFetcher = puppeteer.createBrowserFetcher();
const revision = require(path.join(__dirname, 'node_modules', 'puppeteer-core', 'package.json')).puppeteer.chromium_revision;
const revisionInfo = browserFetcher.revisionInfo(revision);
// download Chromium
browserFetcher.download(revisionInfo.revision, onProgress)
.then(() => browserFetcher.localRevisions())
.then(onSuccess)
.catch(onError);
function onSuccess(localRevisions) {
console.log('Chromium downloaded to ' + revisionInfo.folderPath);
localRevisions = localRevisions.filter(revision => revision !== revisionInfo.revision);
// Remove previous chromium revisions.
const cleanupOldVersions = localRevisions.map(revision => browserFetcher.remove(revision));
if (checkPuppeteerBinary()) {
INSTALL_CHECK = true;
statusbarmessage.dispose();
vscode.window.setStatusBarMessage('$(markdown) Chromium installation succeeded!', StatusbarMessageTimeout);
vscode.window.showInformationMessage('[Markdown PDF] Chromium installation succeeded.');
return Promise.all(cleanupOldVersions);
}
}
function onError(error) {
statusbarmessage.dispose();
vscode.window.setStatusBarMessage('$(markdown) ERROR: Failed to download Chromium!', StatusbarMessageTimeout);
showErrorMessage('Failed to download Chromium! \
If you are behind a proxy, set the http.proxy option to settings.json and restart Visual Studio Code. \
See https://github.com/yzane/vscode-markdown-pdf#install', error);
}
function onProgress(downloadedBytes, totalBytes) {
var progress = parseInt(downloadedBytes / totalBytes * 100);
vscode.window.setStatusBarMessage('$(markdown) Installing Chromium ' + progress + '%' , StatusbarMessageTimeout);
}
} catch (error) {
showErrorMessage('installChromium()', error);
}
}
function showErrorMessage(msg, error) {
vscode.window.showErrorMessage('ERROR: ' + msg);
console.log('ERROR: ' + msg);
if (error) {
vscode.window.showErrorMessage(error.toString());
console.log(error);
}
}
function setProxy() {
var https_proxy = vscode.workspace.getConfiguration('http')['proxy'] || '';
if (https_proxy) {
process.env.HTTPS_PROXY = https_proxy;
process.env.HTTP_PROXY = https_proxy;
}
}
function setBooleanValue(a, b) {
if (a === false) {
return false
} else {
return a || b
}
}
function init() {
try {
if (checkPuppeteerBinary()) {
INSTALL_CHECK = true;
} else {
installChromium();
}
} catch (error) {
showErrorMessage('init()', error);
}
}