mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50: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',
|
type: 'options',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Markdown',
|
name: 'Markdown (Legacy)',
|
||||||
value: 'Markdown',
|
value: 'Markdown',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'MarkdownV2',
|
||||||
|
value: 'MarkdownV2',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'HTML',
|
name: 'HTML',
|
||||||
value: 'HTML',
|
value: 'HTML',
|
||||||
|
@ -1575,9 +1579,13 @@ export class Telegram implements INodeType {
|
||||||
type: 'options',
|
type: 'options',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'Markdown',
|
name: 'Markdown (Legacy)',
|
||||||
value: 'Markdown',
|
value: 'Markdown',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'MarkdownV2',
|
||||||
|
value: 'MarkdownV2',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'HTML',
|
name: 'HTML',
|
||||||
value: 'HTML',
|
value: 'HTML',
|
||||||
|
|
Loading…
Reference in a new issue