Skip to content

Commit 77b2934

Browse files
committed
electron-builder, markdown etc
Switched to electron-builder Uses latest electron MarkDown now works with images Reorganised Markdown CSS to document.css Minor Bug Fixes
1 parent 225d054 commit 77b2934

File tree

7 files changed

+54
-14
lines changed

7 files changed

+54
-14
lines changed

README/styles.css README.css

File renamed without changes.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
tab-size: 4 !important;
99
}
1010
</style>
11-
# Document Pager 0.2.7
11+
# Document Pager 0.3
1212

1313
Document Pager © Mark Simon
1414
https://github.com/manngo/document-pager

data/about.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## About Text Pager 0.2.7
1+
## About Text Pager 0.3
22

33
Text Pager © Mark Simon
44
See also https://pager.internotes.net/

package.json

+27-3
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
{
22
"name": "document-pager",
3-
"version": "0.2.7",
3+
"version": "0.3.0",
44
"description": "Document Pager: Displays a text document in tabbed pages.",
55
"main": "main.js",
66
"repository": "https://github.com/manngo/document-pager",
77
"keywords": [],
88
"author": "Mark Simon",
99
"license": "CC0-1.0",
1010
"devDependencies": {
11-
"electron-packager": "^15.2.0"
11+
1212
},
1313
"dependencies": {
1414
"clipboard": "^2.0.4",
15-
"electron": "^5.0.13",
1615
"electron-log": "^4.0.2",
1716
"electron-reload": "^1.5.0",
1817
"ini": ">=1.3.6",
@@ -24,6 +23,31 @@
2423
"yargs-parser": ">=13.1.2"
2524
},
2625
"productName": "Document Pager",
26+
"build": {
27+
"appId": "com.webcraft101.document-pager",
28+
"mac": {
29+
"category": "public.app-category.developer-tools",
30+
"target": [
31+
"zip", "dmg"
32+
],
33+
"icon": "images/edit-virtual-hosts.icns"
34+
},
35+
"win": {
36+
"target": [
37+
"zip", "nsis", "portable"
38+
],
39+
"icon": "images/edit-virtual-hosts.ico"
40+
},
41+
"nsis": {
42+
"oneClick": false,
43+
"perMachine": false,
44+
"allowElevation": true,
45+
"allowToChangeInstallationDirectory": true
46+
},
47+
"directories": {
48+
"output": "../electron-builder/${name}/${os}"
49+
}
50+
},
2751
"scripts": {
2852
"start": "electron .",
2953
"pack": "electron-builder --dir",

scripts/do-pager.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -248,15 +248,15 @@
248248
smallerButton.onclick=function(event) {
249249
fontSize/=1.25;
250250
divContentPre.style.setProperty('--font-size',fontSize+'em');
251-
}
251+
};
252252
defaultButton.onclick=function(event) {
253253
fontSize=codeFontSize;
254254
divContentPre.style.setProperty('--font-size','');
255-
}
255+
};
256256
largerButton.onclick=function(event) {
257257
fontSize*=1.25;
258258
divContentPre.style.setProperty('--font-size',fontSize+'em');
259-
}
259+
};
260260

261261
// Additional Prism Langage Aliases
262262

@@ -331,11 +331,11 @@
331331
var p=this.previous;
332332
if(p) {
333333
previousButton.onclick=function(event) { p.click(); };
334-
};
334+
}
335335
var n=this.next;
336336
if(n) {
337337
nextButton.onclick=function(event) { n.click(); };
338-
};
338+
}
339339

340340
var doHighlight=formControl.elements['show-highlight'].checked?!event.altKey:event.altKey;
341341
currentItem=data.li=this;
@@ -355,7 +355,7 @@
355355
if(language && doHighlight) codeElement.innerHTML=Prism.highlight(item, Prism.languages[data.language], data.language);
356356
else if(data.language=='md' && doHighlight) {
357357
codeElement.innerHTML=marked(item);
358-
codeElement.classList.add('markdown')
358+
codeElement.classList.add('markdown');
359359
}
360360
document.title=documentTitle+': '+data.fileName+' — '+title;
361361
h1.innerHTML=documentTitle+': '+data.fileName+' — '+title;

scripts/pager.js

+18-2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@
5757
const os=require('os');
5858

5959
/** Extensions
60+
================================================
61+
`${data.path}/${data.fileName}`
62+
image(string href, string title, string text)
6063
================================================ */
6164

6265
var renderer = new marked.Renderer();
@@ -71,7 +74,6 @@
7174
return `<h${level}${id}${className}>${content}</h${level}>`;
7275
}
7376
else return marked(text);
74-
7577
};
7678

7779
const window=remote.getCurrentWindow();
@@ -633,7 +635,19 @@
633635
if(language && doHighlight) elements.codeElement.innerHTML=Prism.highlight(item, Prism.languages[data.language], data.language);
634636
else if(data.language=='markdown' && doHighlight) {
635637
var div=document.createElement('div');
638+
636639
var innerHTML=marked(item,{baseUrl: `${data.path}/${data.fileName}`, renderer});
640+
641+
// innerHTML=innerHTML.replace(/<img(.*?)src="(.*)"(.*?)>/g,function(match,p1,p2,p3,offset,string) {
642+
// if (p2.match(/^https?:\/\//)) return string;
643+
// else return `<img${p1}src="${currentTab.data.path}/${currentTab.data.fileName.replace(/\.[^.]*$/,'')}/${p2.replace(/^\//,'')}"${p3}>`;
644+
// });
645+
646+
innerHTML=innerHTML.replace(/<img(.*?)src="(.*)"(.*?)>/g,function(match,p1,p2,p3,offset,string) {
647+
if (p2.match(/^https?:\/\//)) return string;
648+
else return `<img${p1}src="${currentTab.data.path}/${p2.replace(/^\//,'')}"${p3}>`;
649+
});
650+
637651
div.innerHTML=innerHTML;
638652
var h2=div.querySelector('h1,h2');
639653
div.id=h2.id;
@@ -695,7 +709,9 @@
695709
path=path.join('/');
696710
extension=fileName.split('.').pop();
697711
css='';
698-
if(extensions[extension]=='markdown') css=`${path}/${fileName.replace(/\..*$/,'')}/styles.css`;
712+
// if(extensions[extension]=='markdown') css=`${path}/${fileName.replace(/\..*$/,'')}/styles.css`;
713+
// if(extensions[extension]=='markdown') css=`${path}/styles.css`;
714+
if(extensions[extension]=='markdown') css=`${path}/${fileName.replace(/\..*$/,'')}.css`;
699715

700716
return {path,fileName,extension,css};
701717
}

settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.2.7",
2+
"version": "0.3.0",
33
"headings": {
44
"title": "Document Pager",
55
"h1": "Document Pager",

0 commit comments

Comments
 (0)