chore(server): add OpenAPI spec for to-markdown

This commit is contained in:
Elian Doran 2025-12-07 22:26:21 +02:00
parent 1ed46bd47c
commit ea613986c2
No known key found for this signature in database

View File

@ -4328,6 +4328,28 @@ paths:
text/html:
schema:
type: string
/api/other/to-markdown:
post:
tags: [Utilities]
summary: Renders given HTML to Markdown
operationId: toMarkdown
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [htmlContent]
properties:
htmlContent:
type: string
responses:
'200':
description: The input text rendered as Markdown
content:
text/plain:
schema:
type: string
components:
securitySchemes: