Convert docx to markdown,which shape is reflected?

When converting a docx file to a markdown file, the output contains image references. Can I trun image references to normal image link like

![](images/2020.037.png)

markdown result:

球![ref1]的球面上的三个点

[ref1]: images/2020.037.png

my code:

import aspose.words as aw

doc = aw.Document("2020.docx")
    
for shape in doc.get_child_nodes(aw.NodeType.SHAPE, True):
      shape = shape.as_shape()

2020.docx (340.1 KB)

@ztthu I will consult with our team and get back to you.

@ztthu
We have opened the following new ticket(s) in our internal issue tracking system and will deliver their fixes according to the terms mentioned in Free Support Policies.

Issue ID(s): WORDSNET-27132

You can obtain Paid Support Services if you need support on a priority basis, along with the direct access to our Paid Support management team.

1 Like

The issues you have found earlier (filed as WORDSNET-27132) have been fixed in this Aspose.Words for .NET 24.7 update also available on NuGet.

1 Like