Skip to main content

A web type setter

Project description

License: BSD PyPI version test Downloads Coverage Documentation Status

Donate

degrotesque — A web type setter.

Introduction

degrotesque beautifies the web.

degrotesque is a Python script. It loads a text/markdown/HTML/XML file from the disc — or several in batch — and for each, it replaces some commonly used non-typographic characters, such as ", ', -, etc. into their typographic representation for improving the pages' appearance.

E.g.:

"Well - that's not what I had expected."

will become:

“Well — that's not what I had expected.”

I think it looks much better.

The starting and ending quotes have been replaced by “ and ”, respectively, the ' by ' and the - by an —. Of course, this script omits HTML-elements. It keeps the complete format as-is, and replaces characters by their proper HTML entity name or the respective unicode character.

It is meant to be a relatively reliable post-processing step for web pages before releasing them. In version 3.0.0 the support of markdown files was added.

Background

I often write my texts and web pages using a plain editor. As such, the character " is always used for quotes, a dash is always a minus, etc.

I wanted to have a tool that automatically recognizes which characters should be replaced by their more typographic counterpart and applies the according rules.

I think it’s a pity that major Desktop Publishing applications do this on the fly but many and even major web sites still show us plain ASCII characters.

degrotesque does the job pretty fine. After writing / building my pages, the tool converts them to a prettier and typographically more correct form. The structure and format of the pages is completely remained. And as said, it works reliable.

If you need any consultations, please let me know. If you know better, too.

Download and Installation

The current version is degrotesque-3.0.0.

You may install degrotesque using

python -m pip install degrotesque

You may download a copy or fork the code at degrotesque's github page.

Besides, you may download the current release here:

License

degrotesque is licensed under BSD license.

Documentation

Usage

degrotesque is implemented in Python. It is started on the command line.

The option -i <PATH> / --input <PATH> tells the script which file(s) shall be read — you may name a file or a folder, here. If the option -r / --recursive is set, the given folder will be processed recursively.

The tool processes text files, HTML files, XML files, and their derivatives. Per default, all files are processed when -i points to a folder. You may limit the files to process by their extension using the -e <EXTENSION>[,<EXTENSION>]* / --extensions <EXTENSION>[,<EXTENSION>]* option. The files are assumed to be encoded using UTF-8 per default. You may change the encoding using the option -E <ENCODING> / --encoding <ENCODING>.

The files are read one by one and the replacement of plain ASCII chars by some nicer ones is based upon a chosen set of “actions”. Known and default actions are given in Appendix A. You may select the actions to apply using the -a <ACTION_NAME>[,<ACTION_NAME>]* / --actions <ACTION_NAME>[,<ACTION_NAME>]* option. The default actions are ‘masks’, ‘quotes.english’, ‘dashes’, ‘ellipsis’, ‘math’, ‘apostrophe’, and ‘commercial’.

Per default, Unicode entities are inserted (e.g. ‘&#8211;’ for an ‘—’). You may change this using the --format <FORMAT> / -f <FORMAT>. The following formats are currently supported:

  • unicode’: uses numeric entities (e.g. ‘&#8211;’ for an ‘—’);
  • html’: uses numeric entities (e.g. ‘&mdash;’ for an ‘—’);
  • text’: uses plain (utf-8) characters (e.g. ‘—’ for an ‘—’).

degrotesque tries to determine whether the read files are plain text files, markdown files, or XML or HTML derivatives using the files& extensions and contents. Appendix B lists the extensions by which files are recognized as HTML / markdown files. To be secure, one may set --html / -H when processing HTML files, --markdown / -M when processing markdown files, or --text / -T when processing plain text files.

When parsing XML/HTML files, the script does not change the quotation marks within elements, of course. As well, the contents of several elements, such as <code> or <pre>, are skipped. You may change the list of elements which contents shall not be processed using the option -s <ELEMENT_NAME>[,<ELEMENT_NAME>]* / --skip <ELEMENT_NAME>[,<ELEMENT_NAME>]*. The list of elements that are skipped per default is given in Appendix C.

When parsing markdown files, code — both indented and defined using ` — is skipped. Quotes as well.

After the actions have been applied to its contents, the file is saved. By default, a backup of the original file is saved under the same name, with the appendix “.orig”. You may omit the creation of these backup files using the option -B / --no-backup.

The option --help / -h prints a help screen. The option --version the degrotesque's version number.

Please note that “masks” is a special action set that disallows the application of some other actions so that, e.g., the dividers in ISBN numbers are not replaced by &ndash;. The masks action set is given in Appendix D.

Options

The script can be started on the command line with the following options:

  • --input/-i <PATH>: the file or the folder to process
  • --recursive/-r: Set if the folder — if given — shall be processed recursively
  • --extensions/-e <EXTENSION>[,<EXTENSION>]*: The extensions of files that shall be processed
  • --encoding/-E <ENCODING>: The assumed encoding of the files
  • --html/-H: Files are HTML/XML-derivatives
  • --text/-T: Files are plain text files
  • --markdown/-M: Files are markdown files
  • --format/-f <FORMAT>: Define the format of the replacements [‘html’, ‘unicode’, ‘text’]
  • --no-backup/-B: Set if no backup files shall be generated
  • --skip/-s <ELEMENT_NAME>[,<ELEMENT_NAME>]*: Elements which contents shall not be changed
  • --actions/-a <ACTION_NAME>[,<ACTION_NAME>]*: Name the actions that shall be applied
  • --help: Prints the help screen
  • --version: Prints the version

Usage Examples

degrotesque -i my_page.html -a quotes.german

Replaces single and double quotes within the file “my_page.html” by their typographic German counterparts.

degrotesque -i my_folder -r --no-backup

Applies the default actions to all files in the folder “my_folder” and all subfolders. No backup files are generated. The files format of each file is determined using the file's extension.

Application Programming Interface — API

You may as well embedd degrotesque within your own applications. The usage is very straightforward:

import degrotesque
# build the degrotesque instance with default values
degrotesque = degrotesque.Degrotesque()
# apply degroteque
plain = ' <script> if(i<0) echo "a"</script> "Hello World" '
pretty = degrotesque.prettify(plain, True)
plain = ' <script> if(i<0) echo "a"</script> "Hello World" '
pretty = degrotesque.prettify(plain, False)

The first call will deliver:

 <script> if(i<0) echo "a"</script> &ldquo;Hello World&rdquo;

while the second — as the string is interpreted as plain text, not HTML will deliver:

 <script> if(i<0) echo &ldquo;a&rdquo;</script> &ldquo;Hello World&rdquo; 

what is probably not what you wished.

The default values can be replaced using some of the class' interfaces (methods):

# change the actions to apply (by naming them)
# here: apply french quotes and math symbols
degrotesque.setActions("quotes.french,math")
# change the elements which contents shall be skipped
# here: skip the contents of "code",
#  "script", and "style" elements
degrotesque.setToSkip("code,script,style")

You may as well consult the degrotesque pydoc code documentation.

Further Documentation

Examples / Users

Change Log

degrotesque-3.0.0 (26.03.2023)

  • Adding support for degrotesquing markdown files (contents of code and quotes are kept)
  • Added support for processing plain text files; The distinction whether a file is a plain text file or a HTML/XML derivative is done using the extension (see Appendix B for used extensions) and by evaluating the contents; Everything is replaced in text files. When processing a file as a XML/HTML derivative, elements are skipped. Introducing the options --text / -T, --markdown / -M, and --html / -H to explicitly set the file type.
  • Supporting different target encodings for the replacements using the --format / -f <FORMAT> option (the option --unicode / -u was removed):
    • unicode’: uses numeric entities (e.g. ‘&#8211;’ for an ‘—’);
    • html’: uses numeric entities (e.g. ‘&mdash;’ for an ‘—’);
    • text’: uses plain (utf-8) characters (e.g. ‘—’ for an ‘—’).
  • 100 % test coverage :-)
  • renamed master branch to main

degrotesque-2.0.6 (05.02.2023)

  • Patched documentation (return types)
  • Set proper formatting for readthedocs
  • It's not 2.0.4 due to caching by readthedocs

degrotesque-2.0.2 (04.02.2023)

  • Corrected installation and execution as a console script

degrotesque-2.0 (05.01.2023)

  • Changed the license to BSD.
  • Using github actions for testing on push instead of using Travis CI
  • Cleaned up project tree
  • Adding an mkdocs documentation

Older Versions

Summary

Well, have fun. If you have any comments / ideas / issues, please submit them to degrotesque's issue tracker on github or drop me a mail.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

degrotesque-3.0.0.tar.gz (23.9 kB view hashes)

Uploaded Source

Built Distribution

degrotesque-3.0.0-py3-none-any.whl (14.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page