Page MenuHomePhabricator

D14170.id34236.diff
No OneTemporary

D14170.id34236.diff

diff --git a/src/utils/PhutilCowsay.php b/src/utils/PhutilCowsay.php
--- a/src/utils/PhutilCowsay.php
+++ b/src/utils/PhutilCowsay.php
@@ -69,6 +69,14 @@
'Failed to replace template variables while rendering cow!'));
}
+ // Since .cow files are actually perl scripts they contain escaped
+ // sequences which we attempt to unescape here by replacing any character
+ // preceded by a backslash/escape with just that character
+ $template = preg_replace(
+ '/\\\\(\\S)/',
+ '$1',
+ $template);
+
$lines = $this->text;
// TODO: It would be nice to use a utf8 soft wrap here instead, but we
diff --git a/src/utils/__tests__/cowsay/cube.test b/src/utils/__tests__/cowsay/cube.test
--- a/src/utils/__tests__/cowsay/cube.test
+++ b/src/utils/__tests__/cowsay/cube.test
@@ -1,12 +1,12 @@
$thoughts
$thoughts
- /---\__/---\\
- | / .... \ ||
- \ ..--.. //
+ /---\\__/---\\\\
+ | / .... \\ ||
+ \\ ..--.. //
|..($eyes). ||
- / ..--.. \\
- | \ .... / ||
- \---/--\---//
+ / ..--.. \\\\
+ | \\ .... / ||
+ \\---/--\\---//
~~~~~~~~~~
{
"text": "I made a friend!",

File Metadata

Mime Type
text/plain
Expires
Thu, Apr 3, 11:52 PM (2 d, 17 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7731137
Default Alt Text
D14170.id34236.diff (1 KB)

Event Timeline