X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mathjax%2Fmathjax.php;h=9bff86a2a56bf04f76c021bdd30a587fe66f71ae;hb=83ed2a1e3730f5432c9fefe9cb30c298b96d838e;hp=e57d69bf54f6db84fdbca972622c4d319aea31d2;hpb=f77cb8f890c1bd28b6b6855a1676c2de409b3ed6;p=friendica-addons.git diff --git a/mathjax/mathjax.php b/mathjax/mathjax.php index e57d69bf..9bff86a2 100644 --- a/mathjax/mathjax.php +++ b/mathjax/mathjax.php @@ -4,7 +4,7 @@ * Name: MathJax * Description: Addon for Friendika to include MathJax (LaTeX math syntax) * Version: 1.0 - * Author: Tobias Diekershoff + * Author: Tobias Diekershoff * License: 3-clause BSD license */ @@ -32,14 +32,19 @@ function mathjax_settings (&$a, &$s) { return; $use = get_pconfig(local_user(),'mathjax','use'); $usetext = (($use) ? ' checked="checked" ' : ''); - $s .= '
'; + $s .= ''; $s .= '

MathJax '.t('Settings').'

'; + $s .= '
'; + $s .= ''; } /* we need to add one JavaScript include command to the html output @@ -72,6 +77,7 @@ function mathjax_plugin_admin (&$a, &$o) { } $o = replace_macros( $t, array( + '$submit' => t('Save Settings'), '$baseurl' => array('baseurl', t('MathJax Base URL'), get_config('mathjax','baseurl' ), t('The URL for the javascript file that should be included to use MathJax. Can be either the MathJax CDN or another installation of MathJax.')), )); }