Example 2: Outgoing MIME content as Markdown
Let's say you want to retrieve the following MIME content as Markdown:
MIME-Version: 1.0
Content-Type: multipart/alternative;
boundary="XXXXboundary text"
--XXXXboundary text
Content-Type: text/markdown
**this is the markdown text**
--XXXXboundary text
Content-Type: text/html
<p><strong>this is the html text</strong></p>
--XXXXboundary text
Content-Type: text/plain
this is the plain text
--XXXXboundary text--
Set the value of richTextAs
query parameter to markdown
, and retrieve the document that contains it.
You should get the following in the richtext
field response:
{
"type": "text/markdown",
"encoding": "PLAIN",
"content": "**this is the markdown text**"
}
Note
Since you have a text/markdown
part in the stored multipart MIME, it gets that and returns it as a response.