org-gcal-post-at-point does not include event description in :org-gcal: drawer
wrn opened this issue · 2 comments
To reproduce:
- Create a TODO heading and add some description to it, and schedule it:
* TODO An Event
SCHEDULED: <2022-12-14 Wed 09:00>
Location: student hall
- run org-gcal-post-at-point on the event.
- The "Location: ...." part is not included in the :org-gcal: drawer, hence not included in Google calendar either.
* TODO An Event
SCHEDULED: <2022-12-14 Wed 09:00>
Location: student hall
:PROPERTIES...
:org-gcal:
:END:
Location should be in the properties drawer. Try creating an event on Google Calendar and then use org-gcal-fetch to see an example of the right format.
Thanks for the tips on location. But I guess my point is not just about location. There can be arbitrary notes for an event that should be included in the event on Goggle calendar.
But on the other hand, I am not sure if moving the original org entry text into the :org-gcal: is always desirable. Ideally I would prefer my original org entry is not touched, but the info is still reflected in the Google calendar. It is kind of like how the "SCHEDULED: <2022-12-14 Wed 09:00>" is handled (that is, we do not add a timestamp in the org-gcal drawer, but the scheduling info is registered with Google calendar)