A library for converting between MdC (Manuel de Codage) and GlyphX (Hieroglpyh XML). Both are used for displaying egyptian hieroglyphs.
This library is part of the Egyptian Writer Android App.
Tip
If you want to render Hieroglyphs in Android try the Egyptian Writer Android App or these libraries:
THOTH and MAAT
Add this to your settings.gradle.kts at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
}
Then add this dependency to your build.gradle.kts file:
dependencies {
implementation("com.github.cristmasbox:GlyphConverter:1.7.0")
}
Note
For the implementation for other build systems like Groovy see here
Download the GlpyhConverter_versionname.jar file from this repository, create a libs folder in your project directory and paste the file there. Then add this dependency to your build.gradle.kts file:
dependencies {
implementation(files("../libs/GlpyhConverter_versionname.jar"))
}
Important
If you renamed the .jar file you also have to change the name in the dependencies
This is the first release of the GlyphConverter library.
Support for brackets in MdC added. Now you can type in:
N17:(i*(p:t)*(t:p)*i):N17
Minor bug fixes. Now you can successfully convert this:
N17:i*(p:t)*(t:p)*i:N17
- updated dependencies
- Custom exception for
glyphXparsing added:GlyphXParserException.java - Support for
\nand\tadded - Support for page break and line break added:
<br/>:!<pbr/>:!!
07.12.2025@1.7.0