I have a Python application using the Google Docs API where I need to perform an operation such as the following. Imagine I have this structure on a document:
1. Text 1
1.1 Internal text
2. Text 2
I want to insert a text below but inside the bullet of Text 1, and have the resulting structure as:
1. Text 1
1.1 New text
1.2 Internal text
2. Text 2
I have tried to use the insertText text request to insert \n\tNew text on the location after Text 1, but it resulted in:
1. Text 1
2. New text
2.1 Internal text
I would like to know what I can do to have the desired structure using the Google Docs API. Could anyone tell me how to do that?
