Hello, thank you for your work on this projet!
Is there any interest in supporting tabular formatting?
For example, like this:
CREATE TABLE inspection (
antispam BOOLEAN NOT NULL DEFAULT FALSE,
antivirus BOOLEAN NOT NULL DEFAULT FALSE,
config VARCHAR NOT NULL DEFAULT '',
ftp_filtering BOOLEAN NOT NULL DEFAULT FALSE,
mail_filtering VARCHAR NOT NULL DEFAULT 'off',
proxy_cache BOOLEAN NOT NULL DEFAULT FALSE,
sandboxing BOOLEAN NOT NULL DEFAULT FALSE,
ssl_filtering VARCHAR NOT NULL DEFAULT 'off',
url_filtering VARCHAR NOT NULL DEFAULT 'off'
);
Instead of this:
CREATE TABLE inspection (
antispam BOOLEAN NOT NULL DEFAULT FALSE,
antivirus BOOLEAN NOT NULL DEFAULT FALSE,
config VARCHAR NOT NULL DEFAULT '',
ftp_filtering BOOLEAN NOT NULL DEFAULT FALSE,
mail_filtering VARCHAR NOT NULL DEFAULT 'off',
proxy_cache BOOLEAN NOT NULL DEFAULT FALSE,
sandboxing BOOLEAN NOT NULL DEFAULT FALSE,
ssl_filtering VARCHAR NOT NULL DEFAULT 'off',
url_filtering VARCHAR NOT NULL DEFAULT 'off'
);
Hello, thank you for your work on this projet!
Is there any interest in supporting tabular formatting?
For example, like this:
Instead of this: