Project

hierogloss

0.0
No commit activity in last 3 years
No release in over 3 years
Extends the Markdown parser Kramdown to support hieroglyphs, inline multi-column glosses, and output to BBCode for use on forums. Includes an executable for processing files and a webfont version of the Gardiner signs.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.3
~> 0.14.0
>= 0

Runtime

~> 1.3
~> 1.4
 Project Readme

Hierogloss

WORK IN PROGRESS. Future releases may change how things work.

Hierogloss is a set of extensions for the Kramdown gem for people working with hieroglyphs. Hierogloss allows you to mix glossed hieroglyphic texts with Markdown-style formatting. For example, you can write:

# Disjunction in Middle Egyptian

This example is based on one in Allen's excellent [Middle Egyptian: An
Introduction to the Language and Culture of Hieroglyphs][allen].

H: z:A1*Z1 | 𓊃:𓏏*𓁐 | 𓂋:𓏤-𓊪𓅱
L: s | s.t | r-pw
G: man | woman | whichever
T: either [a] man or [a] woman

You can emphasize an "or" by following the options with {r-pw}.

[allen]: http://www.amazon.com/Middle-Egyptian-Introduction-Language-Hieroglyphs/dp/0521741440

Note that the inline transliteration is marked with { and }, and that all transliterations are given in MdC format. This allows transliterations to be presented in an appropriate font with Unicode characters.

You can render this as HTML by running:

hierogloss -i example.md > example.html

The -i flag causes hierogloss to render the hieroglyphs as images. This will give you the following:

If you wish to post your text on an online forum, you may have luck with bbcode mode:

hierogloss -f bbcode example.md > example.bbcode

Note that bbcode does not support all the features of Markdown, although I'm happy to implement more of them--or to accept patches!

Installation

To install Hierogloss, make sure you have a working Ruby 2.0 setup, and then run the following:

$ gem install hierogloss

Using Hierogloss from a program

Add this line to your application's Gemfile:

gem 'hierogloss'

And then execute:

$ bundle

To convert Hierogloss-format text to HTML, use the regular Kramdown APIs, but pass input: 'hierogloss' as an argument:

require 'kramdown'
require 'hierogloss'
Kramdown::Document.new(text, input: 'hierogloss').to_html

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request