stylize weechat invite instructions

This commit is contained in:
Bruno Windels 2020-12-07 16:20:31 +01:00
parent e9224c4d66
commit 4e253697de

View File

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
import {Maturity, Platform, LinkKind, WebsiteLink} from "../types.js"; import {Maturity, Platform, LinkKind, WebsiteLink, style} from "../types.js";
/** /**
* Information on how to deep link to a given matrix client. * Information on how to deep link to a given matrix client.
@ -33,8 +33,8 @@ export class Weechat {
getLinkInstructions(platform, link) { getLinkInstructions(platform, link) {
switch (link.kind) { switch (link.kind) {
case LinkKind.User: return `Type /invite ${link.identifier}`; case LinkKind.User: return [`Type `, style.code(`/invite ${link.identifier}`)];
case LinkKind.Room: return `Type /join ${link.identifier}`; case LinkKind.Room: return [`Type `, style.code(`/join ${link.identifier}`)];
} }
} }