From 087cfbe837f2ed7603a1196b6cc9626c16ea2ac9 Mon Sep 17 00:00:00 2001 From: Nicolas Mailloux Date: Mon, 5 Sep 2022 11:41:45 -0400 Subject: [PATCH] README: Provide link to official Matrix space --- README.md | 2 +- src/reader/reader.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2a70377..e7e69a6 100644 --- a/README.md +++ b/README.md @@ -43,6 +43,6 @@ If you install the Nickel add-on, unpack the 'base' archive in the root of the o ## I want to learn more about this! I suggest you visit the [wiki](https://inkbox.ddns.net/wiki). The [General information](https://inkbox.ddns.net/wiki/index.php?title=General_information) page is a pretty good place to start. Feel free to contribute if you think you have something valuable to add. ## How can I contribute? -If you like this project and want to improve it in some way, feel free to fork this repository or [one of the subprojects this organization hosts](https://github.com/Kobo-InkBox), then make a [pull request](https://github.com/Kobo-InkBox/inkbox/pulls). I'll be happy to review it when I have time. You can also join the official [Discord server](https://discord.com/invite/uSWtWbY23m) if you'd like to chat a bit. +If you like this project and want to improve it in some way, feel free to fork this repository or [one of the subprojects this organization hosts](https://github.com/Kobo-InkBox), then make a [pull request](https://github.com/Kobo-InkBox/inkbox/pulls). I'll be happy to review it when I have time. You can also join the official [Matrix space](https://matrix.to/#/#inkbox-os-project:matrix.org) or [Discord server](https://discord.com/invite/uSWtWbY23m) if you'd like to chat a bit.

On the other hand, if you don't have the appropriate coding skills or just want to help in some way, feel free to make a donation at my [PayPal account](https://paypal.me/NicolasMailloux/) or on [LiberaPay](https://liberapay.com/tux-linux/). I'm a student and motivation has been the only thing that has helped me maintain this project for the last months. Developing an entire operating system on my own was not an easy task. I have time, but I like to spend it wisely. diff --git a/src/reader/reader.cpp b/src/reader/reader.cpp index 066ef2f..db92933 100644 --- a/src/reader/reader.cpp +++ b/src/reader/reader.cpp @@ -937,6 +937,7 @@ int reader::setup_book(QString book, int i, bool run_parser) { content << f.readAll(); f.close(); } + // These characters are replaced for consistency with ePUB text handling, highlighting and text alignment. content[i].replace("\n", "
"); content[i].replace("\t", "    "); ittext = content[i];