We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The docs mention MarkdownV2 support, but based on my own tests it appears that only legacy Markdown syntax is supported.
For example, see the following actions snippet:
jobs: send_message: runs-on: ubuntu-latest steps: - name: Telegram Message Notify uses: appleboy/[email protected] with: to: ${{ secrets.TELEGRAM_TO }} token: ${{ secrets.TELEGRAM_BOT_TOKEN }} message: | ${{ github.actor }} ${{ github.event.action }} PR ${{ github.event.number }}: [_${{ github.event.pull_request.title }}_](${{ github.event.pull_request.html_url }}) format: markdown
Despite not being escaped, the italicized title didn't work as expected:
The markdown style notes mention this:
Entities must not be nested, use parse mode MarkdownV2 instead.
Moreover, drone-telegram seems to indicate markdown (v1) is the supported Markdown flavor - not v2.
markdown
Can the docs get updated to indicate which flavor of markdown is actually supported?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The docs mention MarkdownV2 support, but based on my own tests it appears that only legacy Markdown syntax is supported.
For example, see the following actions snippet:
Despite not being escaped, the italicized title didn't work as expected:
The markdown style notes mention this:
Moreover, drone-telegram seems to indicate
markdown
(v1) is the supported Markdown flavor - not v2.Can the docs get updated to indicate which flavor of markdown is actually supported?
The text was updated successfully, but these errors were encountered: