feat(Telegram Node): Add support for markdownv2 (#7679)

Github issue / Community forum post (link here to close automatically):
https://community.n8n.io/t/telegram-markdownv2-style/32675
This commit is contained in:
Jon 2023-11-14 10:33:35 +00:00 committed by GitHub
parent 786b4adcce
commit 819b3a746a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1022,9 +1022,13 @@ export class Telegram implements INodeType {
type: 'options',
options: [
{
name: 'Markdown',
name: 'Markdown (Legacy)',
value: 'Markdown',
},
{
name: 'MarkdownV2',
value: 'MarkdownV2',
},
{
name: 'HTML',
value: 'HTML',
@ -1575,9 +1579,13 @@ export class Telegram implements INodeType {
type: 'options',
options: [
{
name: 'Markdown',
name: 'Markdown (Legacy)',
value: 'Markdown',
},
{
name: 'MarkdownV2',
value: 'MarkdownV2',
},
{
name: 'HTML',
value: 'HTML',