Skip to content

Extending the WordPress Code block with syntax highlighting rendered on the server, thus having faster frontend performance and being AMP-compatible.

License

Notifications You must be signed in to change notification settings

skillsAndMore/syntax-highlighting-code-block

 
 

Repository files navigation

Syntax-highlighting Code Block (with Server-side Rendering)

Banner Extending the Code block with syntax highlighting rendered on the server, thus being AMP-compatible and having faster frontend performance.

Contributors: westonruter, mkaz
Tags: block, code, code syntax, syntax highlight, code highlighting
Requires at least: 5.2
Tested up to: 5.3
Stable tag: 1.1.3
License: GPLv2 or later
Requires PHP: 5.6

Build Status Built with Grunt

Description

This plugin extends to Code block in WordPress core to add syntax highlighting which is rendered on the server. By performing the syntax highlighting on the server, there is then no need to enqueue any JavaScript on the frontend (e.g. Highlight.js or Prism.js) and this ensures there is no flash of unhighlighted code (FOUC?). Reducing script on the frontend improves frontend performance and it also allows for the syntax highlighted code to appear properly in AMP pages as rendered by the official AMP plugin (see also ampproject/amp-wp#972).

The extended Code block uses auto-detection for the language in the block to add syntax highlighting, but you can override the language in the block inspector. (There is currently no syntax highlighting of the Code block in the editor.) The plugin supports for all 185 programming languages that highlight.php supports (being a port of highlight.js).

Any one of 89 styles may be enqueued that highlight.php/highlight.js provide. To change the default style, you may do so by picking a theme via Customizer in the Colors section. To override the default style programmatically, use the syntax_highlighting_code_block_style to supply the one of the style names, for example github:

add_filter(
	'syntax_highlighting_code_block_style',
	function() {
		return 'github';
	}
);

When a filter is provided, the theme selector in Customizer is automatically disabled.

This plugin is developed on GitHub. See list of current issues with the plugin. Please feel free to file any additional issues or requests that you may come across. Pull requests are welcome to help extend.

Credits

This is a fork of Code Syntax Block by Marcus Kazmierczak (mkaz), which is also available on WordPress.org. Copyright (c) 2018 Marcus Kazmierczak. Licensed under GPL 2.0 or later.

highlight.php is released under the BSD 3-Clause License. Copyright © 2006-2013, Ivan Sagalaev ([email protected]), highlight.js (original author). Copyright © 2013, Geert Bergman ([email protected]), highlight.php

Screenshots

Supply content as you do normally in the Code block, optionally overriding the auto-detected language.

Supply content as you do normally in the Code block, optionally overriding the auto-detected language.

The Code block renders with syntax highlighting on the frontend without any JavaScript enqueued.

The Code block renders with syntax highlighting on the frontend without any JavaScript enqueued.

Changelog

For the plugin’s changelog, please see the Releases page on GitHub.

About

Extending the WordPress Code block with syntax highlighting rendered on the server, thus having faster frontend performance and being AMP-compatible.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • JavaScript 54.3%
  • PHP 41.5%
  • Shell 2.8%
  • CSS 1.4%