Describe the bug
Exporting an object to markdown missed out to include the inline URL links and linked objects when they are inside a highlight or toggle block
To Reproduce
Steps to reproduce the behavior:
- Create a new object
- Add a new toggle block and include text with linked URL / object (or) Add a new highlight block and include text with linked URL / object
- Export the object and check the exported markdown
Expected behavior
The exported markdown to have the linked URL / object irrespective of the block type they are in
System Information:
- OS: macOS
- Anytype Version: 0.27.9
Additional context
All three blocks have the same linked URL
The following is the exported markdown
# Test
> This is a test link
This is a test [link](http://www.duckduckgo.com)
> This is a test link
whereas it should be the following markdown
# Test
> This is a test [link](http://www.duckduckgo.com)
This is a test [link](http://www.duckduckgo.com)
> This is a test [link](http://www.duckduckgo.com)