HackMyResume/dist/core/default-options.js

21 lines
425 B
JavaScript
Raw Normal View History

2016-01-27 10:29:26 +00:00
(function() {
2018-02-12 05:05:29 +00:00
/*
Event code definitions.
@module core/default-options
@license MIT. See LICENSE.md for details.
*/
2016-01-27 10:29:26 +00:00
module.exports = {
theme: 'modern',
prettify: {
indent_size: 2,
unformatted: ['em', 'strong'],
2018-02-12 05:05:29 +00:00
max_char: 80 // ← See lib/html.js in above-linked repo
2016-01-27 10:29:26 +00:00
}
};
2018-02-12 05:05:29 +00:00
// wrap_line_length: 120, ← Don't use this
2016-01-27 10:29:26 +00:00
}).call(this);
2016-02-02 02:14:36 +00:00
//# sourceMappingURL=default-options.js.map