template

Type: String

Default: <pre></pre>

With this setting, you can change the pre block template, for example:

RedactorX('#entry', {
    pre: {
        template: '<pre><code></code></pre>'
    }
});

spaces

Type: Number

Default: 4

This setting allows you to specify the number of spaces when you press tab in a pre block.

RedactorX('#entry', {
    pre: {
        spaces: 2
    }
});

disable

You can completely disable adding pre, for this set the setting to false.

RedactorX('#entry', {
    pre: false
});