mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-23 10:32:17 -08:00
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:
parent
786b4adcce
commit
819b3a746a
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue