aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMike Skec <skec@protonmail.ch>2021-02-16 09:56:14 +1100
committerFelix Queißner <felix@ib-queissner.de>2021-02-16 00:19:29 +0100
commit4135e0d368a8181b7422338559bdcd3b214443c4 (patch)
tree7447e944f42d00f6196c08d9def78f8fadd6c22e /src
parent5acffd9b549c89670a7af69d613266b8d8120ecd (diff)
downloadkristall-4135e0d368a8181b7422338559bdcd3b214443c4.tar.gz
Improved blockquotes
Diffstat (limited to 'src')
-rw-r--r--src/browsertab.cpp5
-rw-r--r--src/dialogs/settingsdialog.cpp15
-rw-r--r--src/dialogs/settingsdialog.hpp4
-rw-r--r--src/dialogs/settingsdialog.ui112
-rw-r--r--src/documentstyle.cpp40
-rw-r--r--src/documentstyle.hpp4
-rw-r--r--src/renderers/geminirenderer.cpp21
-rw-r--r--src/renderers/markdownrenderer.cpp2
-rw-r--r--src/renderers/textstyleinstance.cpp17
-rw-r--r--src/renderers/textstyleinstance.hpp4
10 files changed, 172 insertions, 52 deletions
diff --git a/src/browsertab.cpp b/src/browsertab.cpp
index 20289ae..8275ac0 100644
--- a/src/browsertab.cpp
+++ b/src/browsertab.cpp
@@ -90,6 +90,11 @@ BrowserTab::BrowserTab(MainWindow *mainWindow) : QWidget(nullptr),
this->ui->text_browser->verticalScrollBar()->setTracking(true);
+ // We hide horizontal scroll bars for now, however mouse-scrolling (overshooting?)
+ // causes the page to still scroll horizontally. TODO: Fix this
+ this->ui->text_browser->horizontalScrollBar()->setEnabled(false);
+ this->ui->text_browser->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
+
connect(this->ui->url_bar, &SearchBar::escapePressed, this, &BrowserTab::on_url_bar_escapePressed);
this->network_timeout_timer.setSingleShot(true);
diff --git a/src/dialogs/settingsdialog.cpp b/src/dialogs/settingsdialog.cpp
index a7b08e8..36e4291 100644
--- a/src/dialogs/settingsdialog.cpp
+++ b/src/dialogs/settingsdialog.cpp
@@ -138,7 +138,7 @@ void SettingsDialog::setGeminiStyle(DocumentStyle const &style)
.arg(this->current_style.background_color.name(), "#FF00FF"));
ui->quote_preview->setStyleSheet(COLOR_STYLE
- .arg(this->current_style.blockquote_color.name(), "#FF00FF"));
+ .arg(this->current_style.blockquote_bgcolor.name(), "#FF00FF"));
ui->link_local_preview->setStyleSheet(COLOR_STYLE
.arg(this->current_style.background_color.name(), this->current_style.internal_link_color.name()));
@@ -154,6 +154,7 @@ void SettingsDialog::setGeminiStyle(DocumentStyle const &style)
setFontAndColor(this->ui->h1_preview, this->current_style.h1_font, this->current_style.h1_color);
setFontAndColor(this->ui->h2_preview, this->current_style.h2_font, this->current_style.h2_color);
setFontAndColor(this->ui->h3_preview, this->current_style.h3_font, this->current_style.h3_color);
+ setFontAndColor(this->ui->bq_preview, this->current_style.blockquote_font, this->current_style.blockquote_fgcolor);
this->reloadStylePreview();
}
@@ -359,6 +360,11 @@ void SettingsDialog::on_h3_change_font_clicked()
updateFont(current_style.h3_font);
}
+void SettingsDialog::on_bq_change_font_clicked()
+{
+ updateFont(current_style.blockquote_font);
+}
+
void SettingsDialog::updateColor(QColor &input)
{
QColorDialog dialog { this };
@@ -396,6 +402,11 @@ void SettingsDialog::on_h3_change_color_clicked()
updateColor(current_style.h3_color);
}
+void SettingsDialog::on_bq_change_color_clicked()
+{
+ updateColor(current_style.blockquote_fgcolor);
+}
+
void SettingsDialog::on_bg_change_color_clicked()
{
updateColor(current_style.background_color);
@@ -417,7 +428,7 @@ void SettingsDialog::on_link_cross_change_color_clicked()
}
void SettingsDialog::on_quote_change_color_clicked()
{
- updateColor(current_style.blockquote_color);
+ updateColor(current_style.blockquote_bgcolor);
}
void SettingsDialog::on_link_local_prefix_textChanged(const QString &text)
diff --git a/src/dialogs/settingsdialog.hpp b/src/dialogs/settingsdialog.hpp
index 748d118..cc7c302 100644
--- a/src/dialogs/settingsdialog.hpp
+++ b/src/dialogs/settingsdialog.hpp
@@ -50,6 +50,8 @@ private slots:
void on_h3_change_font_clicked();
+ void on_bq_change_font_clicked();
+
void on_std_change_color_clicked();
void on_pre_change_color_clicked();
@@ -60,6 +62,8 @@ private slots:
void on_h3_change_color_clicked();
+ void on_bq_change_color_clicked();
+
void on_bg_change_color_clicked();
void on_link_local_change_color_clicked();
diff --git a/src/dialogs/settingsdialog.ui b/src/dialogs/settingsdialog.ui
index 9968af8..56bbcaf 100644
--- a/src/dialogs/settingsdialog.ui
+++ b/src/dialogs/settingsdialog.ui
@@ -723,6 +723,7 @@
</item>
</layout>
</item>
+
<item row="5" column="0">
<widget class="QLabel" name="label_6">
<property name="text">
@@ -772,56 +773,107 @@
</item>
</layout>
</item>
+
<item row="6" column="0">
+ <widget class="QLabel" name="label_33">
+ <property name="text">
+ <string>Blockquote font</string>
+ </property>
+ </widget>
+ </item>
+ <item row="6" column="1">
+ <layout class="QHBoxLayout" name="horizontalLayout_24">
+ <item>
+ <widget class="QLabel" name="bq_preview">
+ <property name="styleSheet">
+ <string notr="true">border: 1px solid black;</string>
+ </property>
+ <property name="frameShape">
+ <enum>QFrame::NoFrame</enum>
+ </property>
+ <property name="text">
+ <string>This font will be used in blockquotes.</string>
+ </property>
+ <property name="textFormat">
+ <enum>Qt::PlainText</enum>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <widget class="QToolButton" name="bq_change_font">
+ <property name="text">
+ <string/>
+ </property>
+ <property name="icon">
+ <iconset theme="font">
+ <normaloff>.</normaloff>.</iconset>
+ </property>
+ </widget>
+ </item>
+ <item>
+ <widget class="QToolButton" name="bq_change_color">
+ <property name="text">
+ <string/>
+ </property>
+ <property name="icon">
+ <iconset theme="palette">
+ <normaloff>.</normaloff>.</iconset>
+ </property>
+ </widget>
+ </item>
+ </layout>
+ </item>
+
+ <item row="7" column="0">
<widget class="QLabel" name="label_7">
<property name="text">
<string>Local Link Color</string>
</property>
</widget>
</item>
- <item row="7" column="0">
+ <item row="8" column="0">
<widget class="QLabel" name="label_8">
<property name="text">
<string>Foreign Link Color</string>
</property>
</widget>
</item>
- <item row="8" column="0">
+ <item row="9" column="0">
<widget class="QLabel" name="label_9">
<property name="text">
<string>Cross-Scheme-Color</string>
</property>
</widget>
</item>
- <item row="9" column="0">
+ <item row="10" column="0">
<widget class="QLabel" name="label_10">
<property name="text">
<string>Local Link Prefix</string>
</property>
</widget>
</item>
- <item row="10" column="0">
+ <item row="11" column="0">
<widget class="QLabel" name="label_11">
<property name="text">
<string>Extern Link Prefix</string>
</property>
</widget>
</item>
- <item row="10" column="1">
+ <item row="11" column="1">
<widget class="QLineEdit" name="link_foreign_prefix">
<property name="text">
<string>⇒ </string>
</property>
</widget>
</item>
- <item row="9" column="1">
+ <item row="10" column="1">
<widget class="QLineEdit" name="link_local_prefix">
<property name="text">
<string>→ </string>
</property>
</widget>
</item>
- <item row="6" column="1">
+ <item row="7" column="1">
<layout class="QHBoxLayout" name="horizontalLayout_20">
<item>
<widget class="QLabel" name="link_local_preview">
@@ -846,7 +898,7 @@
</item>
</layout>
</item>
- <item row="7" column="1">
+ <item row="8" column="1">
<layout class="QHBoxLayout" name="horizontalLayout_21">
<item>
<widget class="QLabel" name="link_foreign_preview">
@@ -871,7 +923,7 @@
</item>
</layout>
</item>
- <item row="8" column="1">
+ <item row="9" column="1">
<layout class="QHBoxLayout" name="horizontalLayout_22">
<item>
<widget class="QLabel" name="link_cross_preview">
@@ -896,25 +948,25 @@
</item>
</layout>
</item>
- <item row="12" column="0">
+ <item row="13" column="0">
<widget class="QLabel" name="label_12">
<property name="text">
<string>Auto-Theme Generation</string>
</property>
</widget>
</item>
- <item row="12" column="1">
+ <item row="13" column="1">
<widget class="QComboBox" name="auto_theme"/>
</item>
- <item row="13" column="0">
+ <item row="14" column="0">
<widget class="QLabel" name="label_13">
<property name="text">
<string>Left/right Page Margin</string>
</property>
</widget>
</item>
- <item row="13" column="1">
+ <item row="14" column="1">
<widget class="QDoubleSpinBox" name="page_margin_h">
<property name="suffix">
<string> px</string>
@@ -928,14 +980,14 @@
</widget>
</item>
- <item row="14" column="0">
+ <item row="15" column="0">
<widget class="QLabel" name="label_32">
<property name="text">
<string>Top/bottom Page Margin</string>
</property>
</widget>
</item>
- <item row="14" column="1">
+ <item row="15" column="1">
<widget class="QDoubleSpinBox" name="page_margin_v">
<property name="suffix">
<string> px</string>
@@ -949,14 +1001,14 @@
</widget>
</item>
- <item row="15" column="0">
+ <item row="16" column="0">
<widget class="QLabel" name="label_25">
<property name="text">
<string>Other options</string>
</property>
</widget>
</item>
- <item row="15" column="1">
+ <item row="16" column="1">
<layout class="QHBoxLayout" name="horizontalLayout_98">
<item>
<widget class="QCheckBox" name="enable_justify_text">
@@ -981,7 +1033,7 @@
</layout>
</item>
- <item row="16" column="0">
+ <item row="17" column="0">
<widget class="QLabel" name="label_38">
<property name="text">
<string>Text width limit</string>
@@ -991,7 +1043,7 @@
</property>
</widget>
</item>
- <item row="16" column="1">
+ <item row="17" column="1">
<widget class="QSpinBox" name="text_width">
<property name="minimum">
<number>300</number>
@@ -1008,14 +1060,14 @@
</widget>
</item>
- <item row="17" column="0">
+ <item row="18" column="0">
<widget class="QLabel" name="label_35">
<property name="text">
<string>Line height (paragraph)</string>
</property>
</widget>
</item>
- <item row="17" column="1">
+ <item row="18" column="1">
<widget class="QDoubleSpinBox" name="line_height_p">
<property name="suffix">
<string> px</string>
@@ -1029,14 +1081,14 @@
</widget>
</item>
- <item row="18" column="0">
+ <item row="19" column="0">
<widget class="QLabel" name="label_36">
<property name="text">
<string>Line height (header)</string>
</property>
</widget>
</item>
- <item row="18" column="1">
+ <item row="19" column="1">
<widget class="QDoubleSpinBox" name="line_height_h">
<property name="suffix">
<string> px</string>
@@ -1050,14 +1102,14 @@
</widget>
</item>
- <item row="19" column="0">
+ <item row="20" column="0">
<widget class="QLabel" name="label_37">
<property name="text">
<string>Indentation</string>
</property>
</widget>
</item>
- <item row="19" column="1">
+ <item row="20" column="1">
<layout class="QHBoxLayout" name="indent_container">
<item>
@@ -1147,14 +1199,14 @@
</layout>
</item>
- <item row="20" column="0">
+ <item row="21" column="0">
<widget class="QLabel" name="label_17">
<property name="text">
<string>Presets</string>
</property>
</widget>
</item>
- <item row="20" column="1">
+ <item row="21" column="1">
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QComboBox" name="presets"/>
@@ -1230,14 +1282,14 @@
</item>
</layout>
</item>
- <item row="11" column="0">
+ <item row="12" column="0">
<widget class="QLabel" name="label_21">
<property name="text">
<string>Block Quote Background</string>
</property>
</widget>
</item>
- <item row="11" column="1">
+ <item row="12" column="1">
<layout class="QHBoxLayout" name="horizontalLayout_6">
<item>
<widget class="QLabel" name="quote_preview">
@@ -1374,6 +1426,8 @@
<tabstop>h2_change_color</tabstop>
<tabstop>h3_change_font</tabstop>
<tabstop>h3_change_color</tabstop>
+ <tabstop>bq_change_font</tabstop>
+ <tabstop>bq_change_color</tabstop>
<tabstop>link_local_change_color</tabstop>
<tabstop>link_foreign_change_color</tabstop>
<tabstop>link_cross_change_color</tabstop>
diff --git a/src/documentstyle.cpp b/src/documentstyle.cpp
index 0a9f48d..4162983 100644
--- a/src/documentstyle.cpp
+++ b/src/documentstyle.cpp
@@ -122,13 +122,15 @@ DocumentStyle::DocumentStyle(bool do_init) : theme(Fixed),
h2_font(),
h3_font(),
preformatted_font(),
+ blockquote_font(),
background_color(0xed, 0xef, 0xff),
standard_color(0x00, 0x00, 0x00),
preformatted_color(0x00, 0x00, 0x00),
h1_color(0x02, 0x2f, 0x90),
h2_color(0x02, 0x2f, 0x90),
h3_color(0x02, 0x2f, 0x90),
- blockquote_color(0xFF, 0xFF, 0xFF),
+ blockquote_fgcolor(0x00, 0x00, 0x00),
+ blockquote_bgcolor(0xFF, 0xFF, 0xFF),
internal_link_color(0x0e, 0x8f, 0xff),
external_link_color(0x0e, 0x8f, 0xff),
cross_scheme_link_color(0x09, 0x60, 0xa7),
@@ -185,6 +187,10 @@ void DocumentStyle::initialiseDefaultFonts()
h3_font.setBold(true);
h3_font.setPointSizeF(12.0);
+ blockquote_font.setFamily(FONT_NORMAL);
+ blockquote_font.setItalic(true);
+ blockquote_font.setPointSizeF(10.0);
+
this->cookie = []() {
QByteArray arr(8, ' ');
for(auto & b : arr)
@@ -224,7 +230,8 @@ bool DocumentStyle::save(QSettings &settings) const
settings.setValue("theme", int(theme));
settings.setValue("background_color", background_color.name());
- settings.setValue("blockquote_color", blockquote_color.name());
+
+ settings.setValue("blockquote_color", blockquote_bgcolor.name());
settings.setValue("margins_h", margin_h);
settings.setValue("margins_v", margin_v);
@@ -262,6 +269,12 @@ bool DocumentStyle::save(QSettings &settings) const
settings.endGroup();
}
{
+ settings.beginGroup("Blockquote");
+ settings.setValue("font", blockquote_font.toString());
+ settings.setValue("color", blockquote_fgcolor.name());
+ settings.endGroup();
+ }
+ {
settings.beginGroup("Link");
settings.setValue("color_internal", internal_link_color.name());
@@ -304,11 +317,13 @@ bool DocumentStyle::load(QSettings &settings)
h2_font.fromString(settings.value("h2_font").toString());
h3_font.fromString(settings.value("h3_font").toString());
preformatted_font.fromString(settings.value("preformatted_font").toString());
+ blockquote_font.fromString(settings.value("blockquote_font").toString());
background_color = QColor(settings.value("background_color").toString());
standard_color = QColor(settings.value("standard_color").toString());
preformatted_color = QColor(settings.value("preformatted_color").toString());
- blockquote_color = QColor(settings.value("blockquote_color").toString());
+ blockquote_bgcolor = QColor(settings.value("blockquote_color").toString());
+ blockquote_fgcolor = standard_color;
h1_color = QColor(settings.value("h1_color").toString());
h2_color = QColor(settings.value("h2_color").toString());
h3_color = QColor(settings.value("h3_color").toString());
@@ -328,7 +343,8 @@ bool DocumentStyle::load(QSettings &settings)
theme = Theme(settings.value("theme", int(theme)).toInt());
background_color = QColor { settings.value("background_color", background_color.name()).toString() };
- blockquote_color = QColor { settings.value("blockquote_color", blockquote_color.name()).toString() };
+ blockquote_bgcolor = QColor { settings.value("blockquote_color", blockquote_bgcolor.name()).toString() };
+ blockquote_fgcolor = QColor { settings.value("blockquote_fgcolor", blockquote_fgcolor.name()).toString() };
margin_h = settings.value("margins_h", 30).toInt();
margin_v = settings.value("margins_v", 55).toInt();
@@ -370,6 +386,12 @@ bool DocumentStyle::load(QSettings &settings)
settings.endGroup();
}
{
+ settings.beginGroup("Blockquote");
+ blockquote_font.fromString(settings.value("font", blockquote_font.toString()).toString());
+ blockquote_fgcolor = QString { settings.value("color", blockquote_fgcolor.name()).toString() };
+ settings.endGroup();
+ }
+ {
settings.beginGroup("Link");
internal_link_color = QString { settings.value("color_internal", internal_link_color.name()).toString() };
@@ -441,6 +463,7 @@ DocumentStyle DocumentStyle::derive(const QUrl &url) const
patchup_font(themed.h3_font, "Kristall H3");
patchup_font(themed.standard_font, "Kristall Standard");
patchup_font(themed.preformatted_font, "Kristall Monospace");
+ patchup_font(themed.blockquote_font, "Kristall Blockquote");
if (this->theme == Fixed)
return themed;
@@ -470,7 +493,8 @@ DocumentStyle DocumentStyle::derive(const QUrl &url) const
themed.internal_link_color = themed.external_link_color.lighter(110);
themed.cross_scheme_link_color = themed.external_link_color.darker(110);
- themed.blockquote_color = themed.background_color.lighter(130);
+ themed.blockquote_bgcolor = themed.background_color.lighter(130);
+ themed.blockquote_fgcolor = QColor{0xEE, 0xEE, 0xEE};
break;
}
@@ -488,7 +512,8 @@ DocumentStyle DocumentStyle::derive(const QUrl &url) const
themed.internal_link_color = themed.external_link_color.darker(110);
themed.cross_scheme_link_color = themed.external_link_color.lighter(110);
- themed.blockquote_color = themed.background_color.darker(120);
+ themed.blockquote_bgcolor = themed.background_color.darker(113);
+ themed.blockquote_fgcolor = QColor{0x40, 0x40, 0x40};
break;
}
@@ -513,7 +538,8 @@ QString DocumentStyle::toStyleSheet() const
css += QString("h1 { color: %2; %1 }\n").arg(encodeCssFont (h1_font), h1_color.name());
css += QString("h2 { color: %2; %1 }\n").arg(encodeCssFont (h2_font), h2_color.name());
css += QString("h3 { color: %2; %1 }\n").arg(encodeCssFont (h3_font), h3_color.name());
- css += QString("blockquote { background: %1 }\n").arg(blockquote_color.name());
+ css += QString("blockquote { background: %1; color: %2; %3 }\n")
+ .arg(blockquote_bgcolor.name(), blockquote_fgcolor.name(), encodeCssFont(blockquote_font));
// qDebug() << "CSS → " << css;
return css;
diff --git a/src/documentstyle.hpp b/src/documentstyle.hpp
index 961a0ed..c3ac368 100644
--- a/src/documentstyle.hpp
+++ b/src/documentstyle.hpp
@@ -33,6 +33,7 @@ struct DocumentStyle
QFont h2_font;
QFont h3_font;
QFont preformatted_font;
+ QFont blockquote_font;
QColor background_color;
QColor standard_color;
@@ -40,7 +41,8 @@ struct DocumentStyle
QColor h1_color;
QColor h2_color;
QColor h3_color;
- QColor blockquote_color;
+ QColor blockquote_fgcolor;
+ QColor blockquote_bgcolor;
QColor internal_link_color;
QColor external_link_color;
diff --git a/src/renderers/geminirenderer.cpp b/src/renderers/geminirenderer.cpp
index 5f82bb8..595db44 100644
--- a/src/renderers/geminirenderer.cpp
+++ b/src/renderers/geminirenderer.cpp
@@ -6,6 +6,7 @@
#include <QList>
#include <QStringList>
#include <QDebug>
+#include <QTextTable>
#include "kristall.hpp"
@@ -106,20 +107,28 @@ std::unique_ptr<GeminiDocument> GeminiRenderer::render(
if(line.startsWith(">"))
{
- if(not blockquote ) {
- // cursor.insertBlock();
+ if(!blockquote)
+ {
+ // Start blockquote
+ QTextTable *table = cursor.insertTable(1, 1, text_style.blockquote_tableformat);
+ cursor.setBlockFormat(text_style.blockquote_format);
+ QTextTableCell cell = table->cellAt(0, 0);
+ cell.setFormat(text_style.blockquote);
+ blockquote = true;
}
- blockquote = true;
- cursor.setBlockFormat(text_style.block_quote_format);
replace_quotes(line);
- cursor.insertText(trim_whitespace(line.mid(1)) + "\n", text_style.standard);
+ cursor.insertText(trim_whitespace(line.mid(1)) + "\n", text_style.blockquote);
continue;
}
else
{
- if(blockquote) {
+ if (blockquote)
+ {
+ // End blockquote
+ cursor.deletePreviousChar();
+ cursor.movePosition(QTextCursor::NextBlock);
cursor.setBlockFormat(text_style.standard_format);
}
blockquote = false;
diff --git a/src/renderers/markdownrenderer.cpp b/src/renderers/markdownrenderer.cpp
index 2b8657d..d3c5f1d 100644
--- a/src/renderers/markdownrenderer.cpp
+++ b/src/renderers/markdownrenderer.cpp
@@ -121,7 +121,7 @@ static void renderNode(RenderState &state, cmark_node & node, const QTextCharFor
state.emitNewBlock();
state.suppress_next_block = true;
- cursor.setBlockFormat(state.text_style.block_quote_format);
+ cursor.setBlockFormat(state.text_style.blockquote_format);
renderChildren(state, node, current_format, page_title);
state.emitNewBlock();
diff --git a/src/renderers/textstyleinstance.cpp b/src/renderers/textstyleinstance.cpp
index aaf7ee6..cce6313 100644
--- a/src/renderers/textstyleinstance.cpp
+++ b/src/renderers/textstyleinstance.cpp
@@ -26,10 +26,11 @@ TextStyleInstance::TextStyleInstance(DocumentStyle const & themed_style)
standard_h3.setFont(themed_style.h3_font);
standard_h3.setForeground(QBrush(themed_style.h3_color));
- preformatted_format.setNonBreakableLines(true);
+ blockquote.setFont(themed_style.blockquote_font);
+ blockquote.setForeground(QBrush(themed_style.blockquote_fgcolor));
+ blockquote.setBackground(themed_style.blockquote_bgcolor);
- block_quote_format.setIndent(themed_style.indent_bq);
- block_quote_format.setBackground(themed_style.blockquote_color);
+ preformatted_format.setNonBreakableLines(true);
// Other alignments
auto align = themed_style.justify_text ? Qt::AlignJustify : Qt::AlignLeft;
@@ -42,9 +43,15 @@ TextStyleInstance::TextStyleInstance(DocumentStyle const & themed_style)
link_format.setLineHeight(themed_style.line_height_p,
QTextBlockFormat::LineDistanceHeight);
- block_quote_format.setAlignment(align);
- block_quote_format.setLineHeight(themed_style.line_height_p,
+ blockquote_format.setAlignment(align);
+ blockquote_format.setLineHeight(themed_style.line_height_p,
QTextBlockFormat::LineDistanceHeight);
+ blockquote_tableformat.setBorderStyle(QTextFrameFormat::BorderStyle_None);
+ blockquote_tableformat.setHeaderRowCount(0);
+ blockquote_tableformat.setCellPadding(16.0);
+ blockquote_tableformat.setAlignment(Qt::AlignJustify);
+ blockquote_tableformat.setLeftMargin(20.0 * themed_style.indent_bq);
+ blockquote_tableformat.setBottomMargin(20.0);
list_format.setStyle(QTextListFormat::ListDisc);
list_format.setIndent(themed_style.indent_l);
diff --git a/src/renderers/textstyleinstance.hpp b/src/renderers/textstyleinstance.hpp
index cab2d25..f1d34bc 100644
--- a/src/renderers/textstyleinstance.hpp
+++ b/src/renderers/textstyleinstance.hpp
@@ -16,13 +16,15 @@ struct TextStyleInstance
QTextCharFormat standard_h1;
QTextCharFormat standard_h2;
QTextCharFormat standard_h3;
+ QTextCharFormat blockquote;
QTextBlockFormat standard_format;
QTextBlockFormat preformatted_format;
- QTextBlockFormat block_quote_format;
+ QTextBlockFormat blockquote_format;
QTextBlockFormat heading_format;
QTextBlockFormat link_format;
QTextListFormat list_format;
+ QTextTableFormat blockquote_tableformat;
explicit TextStyleInstance(DocumentStyle const & style);
};