Puppet Class: role::mathoid

Defined in:
puppet/modules/role/manifests/mathoid.pp

Overview

Class: role::mathoid

This role installs the mathoid service for server side MathJax rendering.



4
5
6
7
8
9
10
11
12
# File 'puppet/modules/role/manifests/mathoid.pp', line 4

class role::mathoid {
    include ::mathoid
    # use local mathoid renderer
    mediawiki::settings { 'Mathoid':
        values => [
            '$wgMathMathMLUrl = "http://localhost:10042";',
        ],
    }
}