Go to file
Gonçalo Silva 928254e992 Fix, cleanup and improve preview CSS
Fixes #121. Additional, fixes include:
* Light tables, title/hr underlines, code and quote blocks on the
dark theme
* Scrollbar not rendering on top of content

Cleanup includes:
* Removal of css rules that are internal to github (eg. octicon)
* Merging of duplicate or overridden declarations
* De-duplicating light and dark theme using import + custom properties

Improvements include:
* Using Fira / Fira Mono for rendering (as is done in the text editor)
* Using relative units as much as possible, making it much easier to
use a responsive design in the future
* Using the same background color for a more seamless experience
* Adjusting color contrast for the background changes, ensuring proper
accessibility while still using GitHub's style
2019-03-24 03:50:08 +00:00
bin don't needed manual setup of the po path 2018-05-01 21:41:47 +02:00
data Fix, cleanup and improve preview CSS 2019-03-24 03:50:08 +00:00
flatpak fix version 2019-03-23 01:48:44 +01:00
help initial commit sidebar 2014-07-06 22:35:24 +02:00
po update localizations 2019-03-10 02:19:28 +01:00
screenshots New mockups 2018-07-17 12:51:45 +02:00
tests initial commit sidebar 2014-07-06 22:35:24 +02:00
uberwriter Fix preview flash on toggle 2019-03-23 17:05:02 +00:00
uberwriter_lib add debug flag to webview 2019-03-21 21:35:36 +01:00
.gitignore update gitignore 2018-11-28 22:28:23 +01:00
AUTHORS initial commit sidebar 2014-07-06 22:35:24 +02:00
COPYING initial commit sidebar 2014-07-06 22:35:24 +02:00
ISSUE_TEMPLATE.md Create ISSUE_TEMPLATE.md 2018-04-10 14:55:40 +02:00
MANIFEST.in localization 2018-04-11 20:10:31 +02:00
Makefile update makefile to setuptools 2018-04-11 13:47:47 +02:00
PKGBUILD updated version 2018-11-28 22:26:31 +01:00
README.md Update README 2018-05-20 14:28:50 +02:00
autogen.sh make them executable 2018-11-29 23:06:59 +01:00
configure make them executable 2018-11-29 23:06:59 +01:00
de.wolfvollprecht.UberWriter.desktop Merge branch 'master' into refactoring 2019-03-09 20:43:48 +01:00
lipsum.md update webpage 2018-06-12 20:24:40 +02:00
markdown_test.md initial commit sidebar 2014-07-06 22:35:24 +02:00
requirements.txt minor changes 2018-11-27 20:50:27 +01:00
setup.py fix installation paths for media files 2018-12-06 14:34:40 +01:00

README.md

Uberwriter

About

Uberwriter is a GTK+ based distraction free Markdown editor, mainly developed by Wolf Vollprecht. It uses pandoc as backend for markdown parsing and offers a very clean and sleek user interface.

Install

You can get now UberWriter on Flathub! Get it now

Contributions and localization

If you want to help to localize the project, just join us at Poeditor Any help is appreciated!

Running and building it

To use uberwriter, please make sure you have some dependencies installed:

  • Pandoc, the program used to convert Markdown to basically anything else (the package name should be pandoc in most distributions)
  • Of course, gtk3 etc. needs to be installed as well since this is a gtk application
  • webkit2gtk is also needed for the preview panel
  • Please find these packages on your distribution: python3 python3-regex python3-setuptools python3-levenshtein python3-enchant python3-gi python3-cairo
  • Optional dependencies are texlive for the pdftex module.

You can run UberWriter with ./bin/uberwriter without installing it in the system, but you'll need to install and compile the schemas before: sudo cp data/de.wolfvollprecht.UberWriter.gschema.xml /usr/share/glib-2.0/schemas/de.wolfvollprecht.UberWriter.gschema.xml sudo glib-compile-schemas /usr/share/glib-2.0/schemas

It's also possible to build, run and debug a flatpak package. You'll need flatpak-builder for this:

  • cd to the flatpak dir of the repo
  • flatpak-builder --install --force-clean some_folder_name uberwriter.json (this installs and cleans the build folder)
  • flatpak run de.wolfvollprecht.UberWriter

If you can't find Uberwriter after this, it's due to a Flatpak bug. Try to export it to a local repo before installing it:

  • cd flatpak
  • flatpak-builder --repo=org.foo.Uberwriter --force-clean build uberwriter.json
  • flatpak remote-add --no-gpg-verify user org.foo.Uberwriter
  • flatpak install foo de.wolfvollprecht.UberWriter

Where org.foo.repo is the name of your repo, you can change 'foo' with the name you want Then you can run it as before or from your system launcher.

If you want to update an existing installation, just run

  • flatpak update de.wolfvollprecht.UberWriter

You can also debug it with the following: flatpak-builder --run --share=network some_folder_name uberwriter.json sh

If you want to install it using setuptools, simply run python3 setup.py build install