ligh7hau5/commands/help.js
2019-07-04 19:49:55 -04:00

16 lines
740 B
JavaScript

exports.runQuery = function (matrixClient, room) {
matrixClient.sendHtmlNotice(room.roomId,
'',
'<blockquote><b>+plemara [your message] : post<br>'
+ '+redact [post id] : delete post<br>'
+ '+fren [user id] : follow<br>'
+ '+unfren [user id] : unfollow<br>'
+ '+copy [post id] : repeat/repost/retweet<br>'
+ '+reply [post id] : reply to post<br>'
+ '+clap [post id] : favorite<br>'
+ '+boo [post id] : unfavorite</blockquote>'
+ '<blockquote><b>channel commands<br>'
+ '+flood : turn on timeline<br>'
+ '+notify : show notifications</b></blockquote>'
+ '<blockquote><b>--- <i>docs by lint</i> ---</b></blockquote>');
};