Skip to content

Commit dbf8c5a

Browse files
committed
generate preview.html at markdown path
1 parent 7e07c8b commit dbf8c5a

File tree

8 files changed

+63
-60
lines changed

8 files changed

+63
-60
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@ Makefile
6868
cmake_install.cmake
6969
/**/CMakeFiles
7070

71-
# CMake generated
71+
.vscode
7272
inc/config.h
7373
install_manifest.txt
7474
static/mynotepad.desktop
7575
mynotepad
76+
preview.html

CMakeLists.txt

+2-12
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
1-
cmake_minimum_required(VERSION 2.8)
1+
cmake_minimum_required(VERSION 3.0)
22
project(mynotepad)
33

4-
if (COMMAND cmake_policy)
5-
# Works around warnings libraries linked against that don't
6-
# have absolute paths (e.g. -lpthreads)
7-
cmake_policy(SET CMP0003 NEW)
8-
9-
# Qt5 qt5_use_modules usage was causing "Policy CMP0043 is not set:
10-
# Ignore COMPILE_DEFINITIONS_<Config> properties." warnings
11-
cmake_policy(SET CMP0043 NEW)
12-
endif()
13-
144
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_DEBUG")
155
#add_definitions("$<$<CONFIG:Debug>:-D_DEBUG>")
166

@@ -39,7 +29,7 @@ endif()
3929

4030
set(MYNOTEPAD_VERSION_MAJOR 1)
4131
set(MYNOTEPAD_VERSION_MINOR 0)
42-
set(MYNOTEPAD_VERSION_PATCH 5)
32+
set(MYNOTEPAD_VERSION_PATCH 6)
4333
message(STATUS "MyNotePad version: ${MYNOTEPAD_VERSION_MAJOR}."
4434
"${MYNOTEPAD_VERSION_MINOR}.${MYNOTEPAD_VERSION_PATCH}")
4535

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# MyNotePad
1+
# MyNotePad
22

3-
![logo](static/MyNotePad.ico)
3+
![logo](static/mynotepad.ico)
44

55
## Synopsis
66

@@ -40,7 +40,7 @@ That's all. Run `mynotepad` to launch the program.
4040

4141
2. Extract them to the same folder and merge the `lib/vc14x_x64_dll` folder. For example, the directory tree is like:
4242

43-
```
43+
```text
4444
D:\
4545
|----wxWidgets-3.1.3
4646
|---------------include
@@ -55,6 +55,7 @@ D:\
5555
|-------------wxrc.exe
5656
......
5757
```
58+
5859
See [CMakeLists.txt](CMakeLists.txt) for more detail.
5960

6061
3. Then open CMake-GUI, click `Browse Source` and `Browse Build` to choose a correct place.

inc/main.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const char* MNP_APPNAME_C = "MyNotePad";
55
const wchar_t* MNP_APPNAME = L"MyNotePad";
66
const char* MNP_DOC_TITLE = " - MyNotePad";
77
const char* MNP_DOC_NOTITLE = "Untitled";
8-
const wchar_t* MNP_COPYRIGHT = L"\nCopyright(c) moooc.cc 2020";
8+
const wchar_t* MNP_COPYRIGHT = L"\nCopyright(c) moooc.cc";
99

1010
int MNP_PADDING_LEFT = 16; // space for line number
1111
const int MNP_LINENUM_MARGIN_LEFT = 4;

md2html/src/parser.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#include "lex_parse.h"
1+
#include <sstream>
2+
#include "lex_parse.h"
23
bool isTableItem(const MD_TOKEN token)
34
{
45
return token == MD_TOKEN::TABLE_COLUMN_LEFT ||

src/main.cpp

+22-18
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,7 @@ void MyFrame::loadSettings()
200200
article->SetMarginWidth(wxSTC_MARGINOPTION_NONE, FromDIP(MNP_PADDING_LEFT * 2));
201201

202202
#ifdef _WIN32
203-
confFilePath = wxStandardPaths::Get().GetExecutablePath();
204-
while (confFilePath.back() != '\\')
205-
confFilePath.pop_back();
203+
confFilePath = wxPathOnly(wxStandardPaths::Get().GetExecutablePath()) + '\\';
206204
#else
207205
confFilePath = wxStandardPaths::Get().GetUserDataDir();
208206
confFilePath += '/';
@@ -384,17 +382,15 @@ void MyFrame::saveHTML(const std::string pathname)
384382
return;
385383
}
386384

387-
f << "<!DOCTYPE><html><head><meta charset=\"utf-8\"/>";
385+
f << "<!DOCTYPE><html><head><meta charset='utf-8'/>";
388386
#ifdef WIN32
389-
f << R"raw(
390-
<link href="style.css" rel="stylesheet">
391-
<link href="highlight.css" rel="stylesheet">
392-
<script type="text/javascript" src="highlight.pack.js"></script>
393-
)raw";
387+
f << "<link href='file:///" << confFilePath << "style.css' rel='stylesheet'>\n"
388+
<< "<link href='file:///" << confFilePath << "highlight.css' rel='stylesheet'>\n"
389+
<< "<script type='text/javascript' src='file:///" << confFilePath << "highlight.pack.js'></script>\n";
394390
#else
395-
f << "<link href='" << MNP_INSTALL_PATH << "style.css' rel='stylesheet'>\n";
396-
f << "<link href='" << MNP_INSTALL_PATH << "highlight.css' rel='stylesheet'>\n";
397-
f << "<script type='text/javascript' src='" << MNP_INSTALL_PATH << "highlight.pack.js'></script>\n";
391+
f << "<link href='file:///" << MNP_INSTALL_PATH << "style.css' rel='stylesheet'>\n"
392+
<< "<link href='file:///" << MNP_INSTALL_PATH << "highlight.css' rel='stylesheet'>\n"
393+
<< "<script type='text/javascript' src='file:///" << MNP_INSTALL_PATH << "highlight.pack.js'></script>\n";
398394
#endif
399395
f << R"raw(<script type="text/javascript">
400396
window.onload = function() {
@@ -410,8 +406,8 @@ void MyFrame::saveHTML(const std::string pathname)
410406
md2html(str);
411407

412408
f << cvt.to_bytes(str);
413-
f << "</main><center><small>Created by <a href=\"https:/"\
414-
"/github.com/mooction/MyNotePad\">MyNotePad</a>.</small></center>";
409+
f << "</main><center><small>Created by <a href='https:/"\
410+
"/github.com/mooction/MyNotePad'>MyNotePad</a>.</small></center>";
415411
if (str.find(L'$') != std::string::npos ||
416412
str.find(L"\\[") != std::string::npos ||
417413
str.find(L"\\(") != std::string::npos)
@@ -456,7 +452,7 @@ void MyFrame::md2html(std::wstring& str)
456452
clock_t end = clock();
457453
double t = double(end - begin) / CLOCKS_PER_SEC;
458454
wos << L"<br><p>elapsed time: " << std::setprecision(2) << t << L" s</p>";
459-
#endif // SHOW_PARSING_TIME
455+
#endif
460456

461457
str = wos.str();
462458
}
@@ -897,12 +893,20 @@ void MyFrame::OnFontSelect(wxCommandEvent& WXUNUSED(event))
897893

898894
void MyFrame::OnBrowser(wxCommandEvent& WXUNUSED(event))
899895
{
896+
std::string s;
897+
if (openedFile == MNP_DOC_NOTITLE) {
900898
#ifdef _WIN32
901-
std::string s = confFilePath + "preview.html";
899+
s = confFilePath + "preview.html";
900+
} else {
901+
s = wxPathOnly(openedFile).ToStdString() + "\\preview.html";
902902
#else
903-
wxString path = wxStandardPaths::Get().GetTempDir() + "/preview.html";
904-
std::string s = path.ToStdString();
903+
wxString path = wxStandardPaths::Get().GetTempDir() + "/preview.html";
904+
s = path.ToStdString();
905+
} else {
906+
s = wxPathOnly(openedFile).ToStdString() + "/preview.html";
905907
#endif
908+
}
909+
906910
saveHTML(s);
907911
LOG_MESSAGE(s);
908912
wxLaunchDefaultApplication(s);

static/style.css

+30-24
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
body {
22
font-family: Noto Sans CJK SC, Microsoft JhengHei UI, Microsoft Yahei, WenQuanYi Micro Hei, helvetica, arial, sans-serif;
3-
font-size: 20px;
4-
color: #444;
5-
background-color: #eee;
6-
word-wrap: break-word;
3+
font-size: 20px;
4+
color: #444;
5+
background-color: #eee;
6+
word-wrap: break-word;
77
}
88

99
body, div, dl, dt, dd, ul, ol, li, code, h1, h2, h3, h4, h5, h6, form,
@@ -43,7 +43,7 @@ img {max-width: 100%}
4343
pre {
4444
background: #f7f7f7 !important;
4545
overflow-x: scroll;
46-
font-size: 18px;
46+
font-size: 18px;
4747
font-family: Noto Mono, Consolas, Lucida Console, Noto Mono, DejaVu Sans Mono, Courier New;
4848
}
4949
code {
@@ -60,45 +60,51 @@ blockquote {
6060
}
6161
ul {
6262
margin: 18px;
63-
padding-left: 8px;
63+
padding-left: 8px;
64+
}
65+
ol {
66+
padding-left: 40px;
6467
}
6568
li {
6669
margin: 2px 0;
6770
}
71+
72+
/* Table
73+
===============================================*/
6874
table {
6975
width: 100%;
7076
border-spacing:0;
71-
border-left: 1px solid #C1DAD7;
72-
border-top: 1px solid #C1DAD7;
77+
border-left: 1px solid #ccc;
7378
margin: 18px 0;
74-
}
79+
}
7580
th {
76-
color: #4f6b72;
77-
border-right: 1px solid #C1DAD7;
78-
border-bottom: 1px solid #C1DAD7;
79-
border-top: 1px solid #C1DAD7;
81+
color: #444;
82+
border-right: 1px solid #ccc;
83+
border-bottom: 1px solid #ccc;
84+
border-top: 1px solid #ccc;
8085
font-size: 20px;
8186
padding: 6px 6px 6px 12px;
82-
background: #CAE8EA no-repeat;
83-
}
87+
background: #eee no-repeat;
88+
}
8489
td {
85-
border-right: 1px solid #C1DAD7;
86-
border-bottom: 1px solid #C1DAD7;
90+
border-right: 1px solid #ccc;
91+
border-bottom: 1px solid #ccc;
8792
padding: 6px 6px 6px 12px;
88-
color: #4f6b72;
93+
color: #444;
8994
font-size: 17px;
9095
word-break: break-all;
9196
}
92-
td.alt {background: #F5FAFA;color: #797268;}
93-
th.spec,td.spec {border-left: 1px solid #C1DAD7;}
94-
tr:nth-child(odd) {background: #fff;}
95-
tr:nth-child(even) {background: #F5FAFA;}
97+
td.alt {background: #fff;color: #fff;}
98+
th.spec,td.spec {border-left: 1px solid #ccc;}
99+
tr:nth-child(odd) {background: #fff;}
100+
tr:nth-child(even) {background: #f7f7f7;}
101+
96102
::selection {background:rgba(0,144,255,0.15)}
97103
::-moz-selection {background:rgba(0,144,255,0.15)}
98104
main {
99105
margin: 60px auto;
100106
width: 61.8%;
101107
min-width: 900px;
102-
background-color: #fff;
103-
padding: 32px;
108+
background-color: #fff;
109+
padding: 32px;
104110
}

static/wx.rc

-304 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)