Start styling + Add syntaxic coloration

This commit is contained in:
brunosimon
2016-06-08 01:45:54 +02:00
parent 1126da2747
commit 5a9835dcbb
104 changed files with 15959 additions and 38 deletions
@@ -1,3 +1,10 @@
var application = angular.module( 'application', [] );
var application = angular.module( 'application', [ 'hljs' ] );
application.constant( 'config', config );
application.constant( 'config', config );
application.config( function( hljsServiceProvider )
{
hljsServiceProvider.setOptions({
// replace tab with 4 spaces
tabReplace: ' '
} );
} );