Skip to content

Commit cd301d5

Browse files
committed
Merge branch 'master' into drop-browser-image
2 parents 215484c + 53ff693 commit cd301d5

File tree

88 files changed

+2492
-764
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+2492
-764
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# EditorConfig is awesome: http://EditorConfig.org
1+
# EditorConfig is awesome: https://EditorConfig.org
22

33
# top-most EditorConfig file
44
root = true

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"${workspaceFolder}/index.js"
1818
],
1919
"windows": {
20-
"runtimeExecutable": "${workspaceFolder}/node_modeules/.bin/electron.cmd"
20+
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
2121
}
2222
},
2323
{

Backers.md

Lines changed: 0 additions & 72 deletions
This file was deleted.

FAQ.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Frequently Asked Questions
2+
3+
4+
<details><summary>Allowing dangerous HTML tags</summary>
5+
6+
Sometimes it is useful to allow dangerous HTML tags to add interactivity to your notebook. One of the example is to use details/summary as a way to expand/collaps your todo-list.
7+
8+
* How to enable:
9+
* Go to **Preferences****Interface****Sanitization****Allow dangerous html tags**
10+
* Example note: Multiple todo-list
11+
* Create new notes
12+
* Paste the below code, and you'll see that you can expand/collaps the todo-list, and you can have multiple todo-list in your note.
13+
14+
```html
15+
<details><summary>What I want to do</summary>
16+
17+
- [x] Create an awesome feature X
18+
- [ ] Do my homework
19+
20+
</details>
21+
```
22+
23+
</details>
24+
25+
## Other questions
26+
27+
You can ask [here][ISSUES]
28+
29+
[ISSUES]: https://github.com/BoostIO/Boostnote/issues

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ GPL-3.0
22

33
Boostnote - an open source note-taking app made for programmers just like you.
44

5-
Copyright (C) 2017 - 2018 BoostIO
5+
Copyright (C) 2017 - 2019 BoostIO
66

77
This program is free software: you can redistribute it and/or modify
88
it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)