* optional children in List component

* added real content to trace page

* added real content to cov page

* add support for json highlighting

* real content on compiler page

* real content on profiler page

* remove unused import

* remove list from compiler page

* wrap code components in pages with breakout component

* fix font size on text

* fix typo
This commit is contained in:
August Skare
2018-10-25 12:10:35 +01:00
committed by GitHub
parent e5d3e3b33a
commit 1ae9f68db8
6 changed files with 232 additions and 66 deletions

View File

@@ -1,6 +1,8 @@
const highlight = require('highlight.js/lib/highlight');
const javascript = require('highlight.js/lib/languages/javascript');
const json = require('highlight.js/lib/languages/json');
highlight.registerLanguage('javascript', javascript);
highlight.registerLanguage('json', json);
export default highlight;