@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1@title Remarkup Reference: Cowsay
2@group userguide
3
4Overview
5--------
6
7Cowsay is an application by Tony Monroe which has been ported over to
8Phabricator/Phorge to allow your comments to be voiced by
9a cow.
10
11Basic Usage
12-----------
13
14A basic example of using cowsay would be to add a comment
15 cowsay{{{Great work!}}}
16which generates:
17```
18 _____________
19< Great work! >
20 -------------
21 \ ^__^
22 \ (oo)\_______
23 (__)\ )\/\
24 ||----w |
25 || ||
26```
27
28Other Cowsay Templates
29----------------------
30Other templates are available in externals/cowsay/cows/, and you can specify
31one by calling cowsay with the 'cow' parameter. eg:
32 cowsay(cow='tux'){{{Great work!}}}
33generates
34```
35 _____________
36< Great work! >
37 -------------
38 \
39 \
40 .--.
41 |o_o |
42 |:_/ |
43 // \ \
44 (| | )
45 /'\_ _/`\
46 \___)=(___/
47```
48
49Other Parameters
50----------------
51* think (set to 1 for thinking bubbles)
52* eyes (default 'oo')
53* tongue (default ' ', try 'P')
54
55See Also
56========
57* @{article:Remarkup Reference}
58* Have you tried figlet:
59```
60figlet{{{figlet generates big text!}}}
61```