![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Render math on the server using the MathJax 3 node API, while maintaining a strict Content Security Policy (CSP) without 'unsafe-inline'
.
While MathJax is well equipped to render beautiful math in a browser, letting it run in the client has two distinctive disadvantages: It is quite CPU-intensive and crucially relies on inline style
attributes and elements. This Jekyll plugin aims to resolve both issues at once by rendering formulas to SVG images on the server, extracting all generated style
attributes into a single <style>
element in the head of the page and computing a hash over its content that can then be added as a CSP style-src
.
The plugin runs the output of Jekyll's markdown parser kramdown through the MathJax 3 node API and thus behaves exactly as client-side MathJax in SVG rendering mode would.
Install the npm packages mathjax-full
and yargs
from your top-level Jekyll directory:
npm init -f # only if you don't have a package.json yet
npm install mathjax-full yargs
Install jekyll-mathjax-csp
:
gem install jekyll-mathjax-csp
Ensure that your _config.yml
contains the following settings:
plugins:
- jekyll-mathjax-csp
exclude:
- node_modules
- package.json
- package-lock.json
Add the {% mathjax_csp_sources %}
Liquid tag where you want the CSP 'sha256-...'
hashes for <style>
elements to be emitted. Don't forget to add the YAML front matter (two lines of ---
) to such files. If you specify your CSP in a different way, add the style-src
sources the plugins prints to the console during build.
Include beautiful math in your posts!
mathjax-full
(npm): 3.0+yargs
(npm): 16.1.0+html-pipeline
: 2.3+jekyll
: 3.0+MathJax adds a fixed inline stylesheet to every page containing math. If you want to serve this stylesheet as an external .css
, you can advise the plugin to strip it from the output by adding the following lines to your _config.yml
:
mathjax_csp:
strip_css: true
Other configuration options for MathJax are also available:
Key | Description | Default |
---|---|---|
em_size | Em-size, in pixels | 12 |
ex_size | Ex-size, in pixels | 6 |
single_dollars | Allow single-dollar delimiters for inline math | false |
output | Output format: SVG or CommonHTML | SVG |
If you want to try out your CSP locally, you can specify headers in your _config.yml
:
webrick:
headers:
Content-Security-Policy: >-
default-src 'none'; script-src ...
It is unfortunately not possible to have Liquid tags in _config.yml
, so with this approach, you will have to update your CSP manually. Don't forget to restart jekyll
for it to pick up the config changes.
Another possibility is using a meta
tag with http-equiv
, placed in your pages' <head>
element:
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; script-src ...">
Note that this cannot be used with frame-ancestors, report-uri, or sandbox.
MIT
FAQs
Unknown package
We found that jekyll-mathjax-csp demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.