Blog enhancements (#80)

* Small CSS adjustments.

* Blog adjustments.

* Add support for Prism in the blog
This commit is contained in:
Héctor Ramos 2017-09-25 12:53:54 -07:00 committed by GitHub
parent a484893c4f
commit 45f6ef8fd9
7 changed files with 80 additions and 2 deletions

View file

@ -10,10 +10,12 @@
const Marked = require("./Marked.js");
const Container = require("./Container.js");
const GridBlock = require("./GridBlock.js");
const Prism = require("./Prism.js");
// collection of other components to provide to users
module.exports = {
Marked: Marked,
Container: Container,
GridBlock: GridBlock
GridBlock: GridBlock,
Prism: Prism
};