Changeset 3222396
- Timestamp:
- 01/14/2025 04:34:46 PM (11 months ago)
- Location:
- mathjax-latex/trunk
- Files:
-
- 3 edited
-
class-mathjax-latex.php (modified) (2 diffs)
-
mathjax-latex.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mathjax-latex/trunk/class-mathjax-latex.php
r2849448 r3222396 211 211 } 212 212 213 $config = get_option( 'kblog_mathjax_config' ) ?: 'default'; 213 $config = get_option( 'kblog_mathjax_config' ); 214 if ( ! $config ) { 215 $config = 'default'; 216 } 214 217 $mathjax_url = add_query_arg( 'config', $config, $mathjax_location ); 215 218 … … 306 309 $filtered_content = preg_replace_callback( 307 310 '/(<math.*>.*<\/math>)/isU', 308 function ( $matches ) {311 function ( $matches ) { 309 312 return str_replace( [ '<br/>', '<br />', '<br>' ], '', $matches[0] ); 310 313 }, -
mathjax-latex/trunk/mathjax-latex.php
r2849448 r3222396 19 19 */ 20 20 21 define( 'MATHJAX_PLUGIN_VERSION', '1.3.1 2' );21 define( 'MATHJAX_PLUGIN_VERSION', '1.3.13' ); 22 22 define( 'MATHJAX_JS_VERSION', '2.7.9' ); 23 23 -
mathjax-latex/trunk/readme.txt
r2849452 r3222396 4 4 Tags: mathematics, math, latex, mathml, mathjax, science, res-comms, scholar, academic 5 5 Requires at least: 3.0 6 Tested up to: 6. 1.17 Stable tag: 1.3.1 26 Tested up to: 6.7.1 7 Stable tag: 1.3.13 8 8 Requires PHP: 7.0.0 9 9 License: GPLv2 … … 34 34 35 35 == Changelog == 36 37 = 1.3.13 = 38 1. PHP code style fixes 36 39 37 40 = 1.3.12 =
Note: See TracChangeset
for help on using the changeset viewer.