MathJax 3 Plugin for Github
Renders Github equations with MathJax 3
MathJax 3 Plugin for Github क्या है?
MathJax 3 Plugin for Github Sam Ritchie द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Renders Github equations with MathJax 3"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में MathJax 3 Plugin for Github एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This plugin renders LaTeX equations on any page on Github using the wonderful MathJax library, version 3.0. the only thing you need to do to get this working in Markdown files on Github is to either use: - `$a = b$` or `$$a = b$$` format, or - escape your backslash, like `\\(a = bc\\)` or `\\[a = bc\\]` You don't need to escape markdown in your code comments. They'll render just fine.
एक्सटेंशन की मूल जानकारी
नाम | MathJax 3 Plugin for Github |
ID | peoghobgdhejhcmgoppjpjcidngdfkod |
आधिकारिक URL | https://chromewebstore.google.com/detail/mathjax-3-plugin-for-gith/peoghobgdhejhcmgoppjpjcidngdfkod |
विवरण | Renders Github equations with MathJax 3 |
फ़ाइल का आकार | 2.05 MB |
स्थापना संख्या | 1,724 |
वर्तमान संस्करण | 0.3.3 |
अंतिम अपडेट | 2020-06-05 |
प्रकाशन तिथि | 2020-06-04 |
रेटिंग | 4.60/5 कुल 5 रेटिंग्स |
डेवलपर | Sam Ritchie |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/sritchie/github-mathjax |
सहायता पृष्ठ URL | https://github.com/sritchie/github-mathjax/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MathJax 3 Plugin for Github", "description": "Renders Github equations with MathJax 3", "version": "0.3.3", "permissions": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "web_accessible_resources": [ "mathjax_config.js", "scripts\/require236.js", "scripts\/jquery-1.11.3.min.js", "scripts\/mathjax3.js", "scripts\/dynamic_math.js", "scripts\/a11y\/*", "scripts\/input\/*", "scripts\/output\/*", "scripts\/sre\/*" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "js": [ "scripts\/jquery-1.11.3.min.js", "scripts\/require236.js", "content.js" ], "run_at": "document_end" } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |