forked from BoostIO/BoostNote-Legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Patch BoostIO#1356 & BoostIO#923] Update to latest source
- Loading branch information
Showing
233 changed files
with
234,465 additions
and
4,810 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Space indentation | ||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
trim_trailing_whitespace = true | ||
|
||
# The indent size used in the `package.json` file cannot be changed | ||
# https://github.com/npm/npm/pull/3180#issuecomment-16336516 | ||
[{*.yml,*.yaml,package.json}] | ||
indent_style = space | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
|
||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "BoostNote Main", | ||
"protocol": "inspector", | ||
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", | ||
"runtimeArgs": [ | ||
"--remote-debugging-port=9223", | ||
"--hot", | ||
"${workspaceFolder}/index.js" | ||
], | ||
"windows": { | ||
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd" | ||
} | ||
}, | ||
{ | ||
"type": "chrome", | ||
"request": "attach", | ||
"name": "BoostNote Renderer", | ||
"port": 9223, | ||
"webRoot": "${workspaceFolder}", | ||
"sourceMapPathOverrides": { | ||
"webpack:///./~/*": "${webRoot}/node_modules/*", | ||
"webpack:///*": "${webRoot}/*" | ||
} | ||
} | ||
], | ||
"compounds": [ | ||
{ | ||
"name": "BostNote All", | ||
"configurations": ["BoostNote Main", "BoostNote Renderer"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Build Boostnote", | ||
"group": "build", | ||
"type": "npm", | ||
"script": "watch", | ||
"isBackground": true, | ||
"presentation": { | ||
"reveal": "always", | ||
}, | ||
"problemMatcher": { | ||
"pattern":[ | ||
{ | ||
"regexp": "^([^\\\\s].*)\\\\((\\\\d+,\\\\d+)\\\\):\\\\s*(.*)$", | ||
"file": 1, | ||
"location": 2, | ||
"message": 3 | ||
} | ||
] | ||
} | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Frequently Asked Questions | ||
|
||
|
||
<details><summary>Allowing dangerous HTML tags</summary> | ||
|
||
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. | ||
|
||
* How to enable: | ||
* Go to **Preferences** → **Interface** → **Sanitization** → **Allow dangerous html tags** | ||
* Example note: Multiple todo-list | ||
* Create new notes | ||
* 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. | ||
|
||
```html | ||
<details><summary>What I want to do</summary> | ||
|
||
- [x] Create an awesome feature X | ||
- [ ] Do my homework | ||
|
||
</details> | ||
``` | ||
|
||
</details> | ||
|
||
## Other questions | ||
|
||
You can ask [here][ISSUES] | ||
|
||
[ISSUES]: https://github.com/BoostIO/Boostnote/issues |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<!-- | ||
Before submitting this PR, please make sure that: | ||
- You have read and understand the contributing.md | ||
- You have checked docs/code_style.md for information on code style | ||
--> | ||
## Description | ||
<!-- | ||
Tell us what your PR does. | ||
Please attach a screenshot/ video/gif image describing your PR if possible. | ||
--> | ||
|
||
## Issue fixed | ||
<!-- | ||
Please list out all issue fixed with this PR here. | ||
--> | ||
|
||
<!-- | ||
Please make sure you fill in these checkboxes, | ||
your PR will be reviewed faster if we know exactly what it does. | ||
Change :white_circle: to :radio_button: in all the options that apply | ||
--> | ||
## Type of changes | ||
|
||
- :white_circle: Bug fix (Change that fixed an issue) | ||
- :white_circle: Breaking change (Change that can cause existing functionality to change) | ||
- :white_circle: Improvement (Change that improves the code. Maybe performance or development improvement) | ||
- :white_circle: Feature (Change that adds new functionality) | ||
- :white_circle: Documentation change (Change that modifies documentation. Maybe typo fixes) | ||
|
||
## Checklist: | ||
|
||
- :white_circle: My code follows [the project code style](docs/code_style.md) | ||
- :white_circle: I have written test for my code and it has been tested | ||
- :white_circle: All existing tests have been passed | ||
- :white_circle: I have attached a screenshot/video to visualize my change if possible |
Oops, something went wrong.