calypsoify
6 years ago
carousel
6 years ago
comment-likes
7 years ago
comments
6 years ago
contact-form
6 years ago
custom-css
6 years ago
custom-post-types
6 years ago
geo-location
6 years ago
google-analytics
6 years ago
infinite-scroll
6 years ago
lazy-images
6 years ago
likes
6 years ago
markdown
6 years ago
masterbar
6 years ago
memberships
6 years ago
photon
6 years ago
photon-cdn
6 years ago
plugin-search
7 years ago
post-by-email
6 years ago
protect
6 years ago
publicize
6 years ago
pwa
6 years ago
related-posts
6 years ago
scan
6 years ago
search
6 years ago
seo-tools
6 years ago
sharedaddy
6 years ago
shortcodes
6 years ago
simple-payments
6 years ago
site-icon
6 years ago
sitemaps
6 years ago
sso
6 years ago
subscriptions
6 years ago
theme-tools
6 years ago
tiled-gallery
6 years ago
verification-tools
6 years ago
videopress
6 years ago
widget-visibility
6 years ago
widgets
6 years ago
woocommerce-analytics
6 years ago
wordads
6 years ago
wpcom-block-editor
6 years ago
wpcom-tos
6 years ago
.eslintrc.js
6 years ago
after-the-deadline.php
7 years ago
carousel.php
7 years ago
comment-likes.php
6 years ago
comments.php
6 years ago
contact-form.php
7 years ago
copy-post.php
6 years ago
custom-content-types.php
6 years ago
custom-css.php
7 years ago
enhanced-distribution.php
9 years ago
geo-location.php
7 years ago
google-analytics.php
8 years ago
gravatar-hovercards.php
6 years ago
infinite-scroll.php
6 years ago
json-api.php
9 years ago
latex.php
6 years ago
lazy-images.php
6 years ago
likes.php
6 years ago
markdown.php
9 years ago
masterbar.php
7 years ago
minileven.php
6 years ago
mobile-push.php
10 years ago
module-extras.php
6 years ago
module-headings.php
6 years ago
module-info.php
6 years ago
monitor.php
6 years ago
notes.php
6 years ago
photon-cdn.php
6 years ago
photon.php
6 years ago
plugin-search.php
6 years ago
post-by-email.php
6 years ago
protect.php
6 years ago
publicize.php
6 years ago
pwa.php
6 years ago
related-posts.php
7 years ago
search.php
6 years ago
seo-tools.php
7 years ago
sharedaddy.php
6 years ago
shortcodes.php
6 years ago
shortlinks.php
7 years ago
sitemaps.php
7 years ago
sso.php
6 years ago
stats.php
6 years ago
subscriptions.php
6 years ago
theme-tools.php
6 years ago
tiled-gallery.php
7 years ago
vaultpress.php
7 years ago
verification-tools.php
7 years ago
videopress.php
7 years ago
widget-visibility.php
7 years ago
widgets.php
7 years ago
woocommerce-analytics.php
6 years ago
wordads.php
7 years ago
wpgroho.js
6 years ago
latex.php
123 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Module Name: Beautiful Math |
| 4 | * Module Description: Use the LaTeX markup language to write mathematical equations and formulas |
| 5 | * Sort Order: 12 |
| 6 | * First Introduced: 1.1 |
| 7 | * Requires Connection: No |
| 8 | * Auto Activate: No |
| 9 | * Module Tags: Writing |
| 10 | * Feature: Writing |
| 11 | * Additional Search Queries: latex, math, equation, equations, formula, code |
| 12 | */ |
| 13 | |
| 14 | /** |
| 15 | * LaTeX support. |
| 16 | * |
| 17 | * Backward compatibility requires support for both "[latex][/latex]", and |
| 18 | * "$latex $" shortcodes. |
| 19 | * |
| 20 | * $latex e^{\i \pi} + 1 = 0$ -> [latex]e^{\i \pi} + 1 = 0[/latex] |
| 21 | * $latex [a, b]$ -> [latex][a, b][/latex] |
| 22 | */ |
| 23 | |
| 24 | function latex_markup( $content ) { |
| 25 | $textarr = wp_html_split( $content ); |
| 26 | |
| 27 | $regex = '% |
| 28 | \$latex(?:=\s*|\s+) |
| 29 | ((?: |
| 30 | [^$]+ # Not a dollar |
| 31 | | |
| 32 | (?<=(?<!\\\\)\\\\)\$ # Dollar preceded by exactly one slash |
| 33 | )+) |
| 34 | (?<!\\\\)\$ # Dollar preceded by zero slashes |
| 35 | %ix'; |
| 36 | |
| 37 | foreach ( $textarr as &$element ) { |
| 38 | if ( '' == $element || '<' === $element[0] ) { |
| 39 | continue; |
| 40 | } |
| 41 | |
| 42 | if ( false === stripos( $element, '$latex' ) ) { |
| 43 | continue; |
| 44 | } |
| 45 | |
| 46 | $element = preg_replace_callback( $regex, 'latex_src', $element ); |
| 47 | } |
| 48 | |
| 49 | return implode( '', $textarr ); |
| 50 | } |
| 51 | |
| 52 | function latex_src( $matches ) { |
| 53 | $latex = $matches[1]; |
| 54 | |
| 55 | $bg = latex_get_default_color( 'bg' ); |
| 56 | $fg = latex_get_default_color( 'text', '000' ); |
| 57 | $s = 0; |
| 58 | |
| 59 | |
| 60 | $latex = latex_entity_decode( $latex ); |
| 61 | if ( preg_match( '/.+(&fg=[0-9a-f]{6}).*/i', $latex, $fg_matches ) ) { |
| 62 | $fg = substr( $fg_matches[1], 4 ); |
| 63 | $latex = str_replace( $fg_matches[1], '', $latex ); |
| 64 | } |
| 65 | if ( preg_match( '/.+(&bg=[0-9a-f]{6}).*/i', $latex, $bg_matches ) ) { |
| 66 | $bg = substr( $bg_matches[1], 4 ); |
| 67 | $latex = str_replace( $bg_matches[1], '', $latex ); |
| 68 | } |
| 69 | if ( preg_match( '/.+(&s=[0-9-]{1,2}).*/i', $latex, $s_matches ) ) { |
| 70 | $s = (int) substr( $s_matches[1], 3 ); |
| 71 | $latex = str_replace( $s_matches[1], '', $latex ); |
| 72 | } |
| 73 | |
| 74 | return latex_render( $latex, $fg, $bg, $s ); |
| 75 | } |
| 76 | |
| 77 | function latex_get_default_color( $color, $default_color = 'ffffff' ) { |
| 78 | global $themecolors; |
| 79 | return isset($themecolors[$color]) ? $themecolors[$color] : $default_color; |
| 80 | } |
| 81 | |
| 82 | function latex_entity_decode( $latex ) { |
| 83 | return str_replace( array( '<', '>', '"', ''', '&', '&', "\n", "\r" ), array( '<', '>', '"', "'", '&', '&', ' ', ' ' ), $latex ); |
| 84 | } |
| 85 | |
| 86 | function latex_render( $latex, $fg, $bg, $s = 0 ) { |
| 87 | $url = "//s0.wp.com/latex.php?latex=" . urlencode( $latex ) . "&bg=" . $bg . "&fg=" . $fg . "&s=" . $s; |
| 88 | $url = esc_url( $url ); |
| 89 | $alt = str_replace( '\\', '\', esc_attr( $latex ) ); |
| 90 | |
| 91 | return '<img src="' . $url . '" alt="' . $alt . '" title="' . $alt . '" class="latex" />'; |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * The shortcode way. The attributes are the same as the old ones - 'fg' and 'bg', instead of foreground |
| 96 | * and background, and 's' is for the font size. |
| 97 | * |
| 98 | * Example: [latex s=4 bg=00f fg=ff0]\LaTeX[/latex] |
| 99 | */ |
| 100 | function latex_shortcode( $atts, $content = '' ) { |
| 101 | extract( shortcode_atts( array( |
| 102 | 's' => 0, |
| 103 | 'bg' => latex_get_default_color( 'bg' ), |
| 104 | 'fg' => latex_get_default_color( 'text', '000' ) |
| 105 | ), $atts, 'latex' ) ); |
| 106 | |
| 107 | return latex_render( latex_entity_decode( $content ), $fg, $bg, $s ); |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * LaTeX needs to be untexturized |
| 112 | */ |
| 113 | function latex_no_texturize( $shortcodes ) { |
| 114 | $shortcodes[] = 'latex'; |
| 115 | return $shortcodes; |
| 116 | } |
| 117 | |
| 118 | add_filter( 'no_texturize_shortcodes', 'latex_no_texturize' ); |
| 119 | |
| 120 | add_filter( 'the_content', 'latex_markup', 9 ); // before wptexturize |
| 121 | add_filter( 'comment_text', 'latex_markup', 9 ); // before wptexturize |
| 122 | add_shortcode( 'latex', 'latex_shortcode' ); |
| 123 |