How can I customize the Notes app to support additional text formatting options, like underlined text? #52
Answered
by
dailker
IsmailBinMujeeb
asked this question in
Q&A
-
How can I customize the Notes app to support additional text formatting options, like underlined text? |
Beta Was this translation helpful? Give feedback.
Answered by
dailker
Oct 3, 2025
Replies: 1 comment
-
To add underline support: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
IsmailBinMujeeb
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To add underline support:
1. In
src/app-components/notes.js
, update the toolbar:javascript<br>const toolbarOptions = [['bold', 'italic', 'underline'], ['link', 'image']];<br>
2. Add CSS in
src/styles/globals.css
:css<br>.ql-underline { text-decoration: underline; }<br>
3. Test with
npm run dev
and submit a pull request.