The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/packages/rocketchat-markdown/settings.js

16 lines
392 B

Meteor.startup(() => {
RocketChat.settings.add('Markdown_Headers', false, {
type: 'boolean',
group: 'Message',
section: 'Markdown',
public: true
});
return RocketChat.settings.add('Markdown_SupportSchemesForLink', 'http,https', {
type: 'string',
group: 'Message',
section: 'Markdown',
public: true,
i18nDescription: 'Markdown_SupportSchemesForLink_Description'
});
});