mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
19 lines
281 B
JavaScript
19 lines
281 B
JavaScript
|
|
||
|
/*
|
||
|
Event code definitions.
|
||
|
@module core/default-options
|
||
|
@license MIT. See LICENSE.md for details.
|
||
|
*/
|
||
|
|
||
|
(function() {
|
||
|
module.exports = {
|
||
|
theme: 'modern',
|
||
|
prettify: {
|
||
|
indent_size: 2,
|
||
|
unformatted: ['em', 'strong'],
|
||
|
max_char: 80
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}).call(this);
|