]> git.mxchange.org Git - friendica.git/commitdiff
Add bash to text_highlight language list
authorHypolite Petovan <mrpetovan@gmail.com>
Thu, 29 Mar 2018 23:29:09 +0000 (19:29 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Thu, 29 Mar 2018 23:29:09 +0000 (19:29 -0400)
include/text.php
src/Content/Text/BBCode.php

index 67ce7e65e83df258ae041296b951478453066ca6..311422c5751d9af55f2399298a1b4543f94e0c50 100644 (file)
@@ -2030,6 +2030,10 @@ function text_highlight($s, $lang) {
                $lang = 'javascript';
        }
 
+       if ($lang === 'bash') {
+               $lang = 'sh';
+       }
+
        // @TODO: Replace Text_Highlighter_Renderer_Html by scrivo/highlight.php
 
        // Autoload the library to make constants available
index 7d1c429765337e48d374f07c223eff9c18e7d0ed..d545492bb0cd1e12ecaa449a8fcdb638ec87b3f0 100644 (file)
@@ -1294,7 +1294,7 @@ class BBCode extends BaseObject
        {
                if (in_array(strtolower($match[1]),
                                ['php', 'css', 'mysql', 'sql', 'abap', 'diff', 'html', 'perl', 'ruby',
-                               'vbscript', 'avrc', 'dtd', 'java', 'xml', 'cpp', 'python', 'javascript', 'js', 'sh'])
+                               'vbscript', 'avrc', 'dtd', 'java', 'xml', 'cpp', 'python', 'javascript', 'js', 'sh', 'bash'])
                ) {
                        return text_highlight($match[2], strtolower($match[1]));
                }