35 lines
818 B
PHP
35 lines
818 B
PHP
<?php
|
|
/**
|
|
* Name: Syntax Highlighting
|
|
* Description: Highlights syntax of code blocks with highlight.js
|
|
* Version: 1.0
|
|
* Author: Hypolite Petovan <hypolite@mrpetovan.com>
|
|
*/
|
|
|
|
use Friendica\App;
|
|
use Friendica\Core\Hook;
|
|
use Friendica\DI;
|
|
|
|
function highlightjs_install()
|
|
{
|
|
Hook::register('head' , __FILE__, 'highlightjs_head');
|
|
Hook::register('footer', __FILE__, 'highlightjs_footer');
|
|
}
|
|
|
|
function highlightjs_head(App $a, string &$str)
|
|
{
|
|
if ($a->getCurrentTheme() == 'frio') {
|
|
$style = 'bootstrap';
|
|
} else {
|
|
$style = 'default';
|
|
}
|
|
|
|
DI::page()->registerStylesheet(__DIR__ . '/asset/styles/' . $style . '.css');
|
|
}
|
|
|
|
function highlightjs_footer(App $a, string &$str)
|
|
{
|
|
DI::page()->registerFooterScript(__DIR__ . '/asset/highlight.pack.js');
|
|
DI::page()->registerFooterScript(__DIR__ . '/highlightjs.js');
|
|
}
|