friendica-addons/mathjax
Adam Magness 48dcbc6f3f Issue 3873
Replace deprecated functions with new syntax
2017-11-06 18:55:24 -05:00
..
lang ES translation work THX Albert 2016-11-18 07:57:19 +01:00
templates update addons template dir layout 2013-04-23 08:48:19 -04:00
LICENSE license file 2013-06-01 09:17:58 +02:00
README.md markdownification of the README 2013-06-01 09:17:25 +02:00
mathjax.php Issue 3873 2017-11-06 18:55:24 -05:00

README.md

MathJax Addon

  • Author: Tobias Diekershoff
  • License: 3-clause BSD license (see the LICENSE file in the addon directory)

About

This addon for friendica includes the MathJax CDN to enable rendering of LaTeX formulae in your friendica postings.

Configuration

All you need to do is provide friendica with the base URL of MathJax. This can be either the URL of the CDN of MathJax or your own installation.

In case you want to use the CDN you can try the following URL as a quick start

http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML

In case you don't want or can use the admin panel of firneidca you can activate the addon by adding mathjax to the

$a->config['system']['addon']

list in your .htconfig.php file and then providing the base URL after that

 $a->config['mathjax']['baseurl'] = 'the URL to your MathJax installation';

Usage

Once the addon is configured you can use LaTeX syntax in your postings to share formulae with your contacts. But remember that the formulae are rendered in the browser of the user thus your contacts need to activate this addon as well. If they don't they will only see the LaTeX syntax in your texts.

Just enclose your equations in ... pairs like e.g. $f_c(x)=ax+b$.