As it is currently, when using
github.rest.issues.createComment({ issue_number, owner, repo, body: "..." })
the body portion is interpreted as Markdown in the comment, so e. g. multiple spaces will be rendered as one space and tokens like <hello> won't be displayed at all because they are interpreted as HTML tags. I would like to prevent both of these mechanisms by posting a comment as raw text instead of Markdown. Is this possible?
According to the documentation, there is no way to disable markdown.
As a workaround you could wrap the body of your comment in triple backquotes, triple tilde or pre tags to display it as a fenced code block :
```text
```
~~~text
~~~
Adding the word "text" should disable the syntax highlighting.