Skip to content

Commit 05da826

Browse files
authored
Merge pull request #2755 from empeje/patch-1
Create FAQ.md
2 parents 3ab506e + 70e16d8 commit 05da826

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

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

0 commit comments

Comments
 (0)