aboutsummaryrefslogtreecommitdiff
path: root/src/utils/message_builder.rs
Commit message (Collapse)AuthorAgeFilesLines
* Stop abusing unicode for sanitisationIllia2017-01-111-6/+6
|
* Use zero-width space for mention preventionIllia2017-01-111-13/+13
|
* Fix typoIllia2016-12-311-1/+1
|
* Make Id displays format u64 instead of a mentionAustin Hellyer2016-12-171-3/+3
| | | | | | Instead of mentioning the channel, role, or user on an Id display format, format its inner u64 instead. Instead, use `Id::mention()` to accomplish the equivilant.
* Re-order message builder fileAustin Hellyer2016-11-281-22/+21
|
* Fix some clippy lintsAustin Hellyer2016-11-281-7/+7
|
* Improve docs and add new message builder methodsIllia K2016-11-281-6/+165
| | | | | Add documentation for some missing methods - such as Game methods - and add more methods to the Message Builder.
* Add a bit more docsAustin Hellyer2016-11-261-1/+0
|
* Rename PublicChannel to GuildChannelAustin Hellyer2016-11-251-2/+2
|
* A bit of docsAustin Hellyer2016-11-181-8/+69
|
* Add some more documentationAustin Hellyer2016-11-061-1/+3
|
* Convert all doc anchors to named anchorsAustin Hellyer2016-11-051-2/+3
| | | | | | | | | | | | | | | | | | | | Convert all of the non-named anchors in docs to named anchors. Example: ```md Kicks a [`Member`](../model/struct.Member.html) from the specified [`Guild`](../model/struct.Guild.html) if they are in it. ``` is now written as: ```md Kicks a [`Member`] from the specified [`Guild`] if they are in it. [`Guild`]: ../model/struct.Guild.html [`Member`]: ../model/struct.Member.html ```
* Initial commitAustin Hellyer2016-10-181-0/+97