Skip to content

Commit

Permalink
"Mathjax" to "MathJax"
Browse files Browse the repository at this point in the history
and tested with 5.9.1
  • Loading branch information
christianp committed Feb 23, 2022
1 parent be2a385 commit 7631e1c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Contributors: sgcoskey, pkra, christianperfect
Donate link: https://boolesrings.org
Tags: mathjax, latex
Requires at least: 3.0
Tested up to: 5.8
Stable tag: 2.0.1
Tested up to: 5.9.1
Stable tag: 2.0.2

Yet another plugin to add MathJax support to your wordpress blog.
Just wrap your equations inside $ signs and MathJax will render them visually.
Expand Down
8 changes: 4 additions & 4 deletions simple-mathjax.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
/*
* Plugin Name: Simple Mathjax
* Plugin Name: Simple MathJax
* Description: Load the mathjax scripts across your wordpress blog
* Version: 2.0.1
* Version: 2.0.2
* Author: Samuel Coskey, Peter Krautzberger, Christian Lawson-Perfect
* Author URI: https://boolesrings.org
*/
Expand Down Expand Up @@ -249,7 +249,7 @@ public static function latex_preamble_input() {
public static function create_menu() {
$simple_mathjax_page = add_options_page(
'Simple MathJax options', // Name of page
'Simple Mathjax', // Label in menu
'Simple MathJax', // Label in menu
'manage_options', // Capability required
'simple_mathjax_options', // Menu slug, used to uniquely identify the page
'SimpleMathJax::options_page' // Function that renders the options page
Expand All @@ -268,7 +268,7 @@ public static function create_menu() {
public static function options_page() {
?>
<div>
<h1>Simple Mathjax options</h1>
<h1>Simple MathJax options</h1>
<form method="post" action="options.php">
<?php settings_fields( 'simple_mathjax_options' ); ?>
<?php do_settings_sections('simple_mathjax'); ?>
Expand Down

0 comments on commit 7631e1c

Please sign in to comment.