kiwiz / gkeepapi

An unofficial client for the Google Keep API.
MIT License
1.52k stars 112 forks source link

How to Apply Text Formatting in gkeepapi.node.Note? #168

Open artur-pf opened 3 months ago

artur-pf commented 3 months ago

Hi there,

I've been using gkeepapi for a project and noticed that while Google Keep supports basic text formatting (like bold, italics, etc.) within the app, I couldn't find a way to apply these formatting options through the API. Is there a method or workaround to programmatically format text in gkeepapi.node.Note objects that I might have missed?

Any guidance or pointers would be greatly appreciated as this feature would greatly enhance the usability of the tool for projects that require richer text formatting.

Thanks for developing and maintaining such a useful tool!

kiwiz commented 3 months ago

It's markdown-ish, so use *, **, _, __, etc

artur-pf commented 3 months ago

At least for me it doesnt use the formatting in Keep. image

note: Node = keep_instance.createNote(title, text)

yuvgin commented 1 week ago

This would indeed be very helpful