Guillaume Binet
Guillaume Binet
Maybe they improved upstreamed, I should probably just remove this one. Thanks
hmmm it doesn't look like mIRC color codes, is this a template that somehow doesn't work ?
Maybe this is coming from a card before this message ? https://raw.githubusercontent.com/errbotio/errbot/master/errbot/templates/card.md ? (it looks more like a bug in the markdown of a card under IRC)
This card template is more little a stop gap if a backend doesn't have a `send_card` function (like slack, hipchat etc have). Maybe the correct way to fix this is...
@pendragon- sure give it a shot !
I think I understand what is going on: push_message just sends it to a queue and the "wait that the call happened" logic in pop_message. This is simply a race...
Those are the code available for fg and bg, is the bg_black correct ? ``` fg_black=NSC('\x0301'), fg_red=NSC('\x0304'), fg_green=NSC('\x0303'), fg_yellow=NSC('\x0308'), fg_blue=NSC('\x0302'), fg_magenta=NSC('\x0306'), fg_cyan=NSC('\x0310'), fg_white=NSC('\x0300'), fg_default=NSC('\x03'), bg_black=NSC('\x03,01'), bg_red=NSC('\x03,04'), bg_green=NSC('\x03,03'), bg_yellow=NSC('\x03,08'), bg_blue=NSC('\x03,02'), bg_magenta=NSC('\x03,06'),...
It is worse, this text is Markdown, so it cuts blocks, formatting, tables... It needs to be a feature of the rendering.
@sijis done. Thx !
the output of a plugin command is always markdown now. I think like for the message cutting bug, it needs to be aware of the markdown structure so it needs...