Skip to content

tonyjurg/Sandborg-Petersen-decoder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project Status: Active – The project has reached a stable, usable state and is being actively developed. DOI License: CC BY 4.0

Sandborg-Petersen Morphology Decoder

The morphological decoder provided here is a lightweight decoder for the Sandborg-Petersen Morphology which is primarily tailored for Koine Greek, especially as it appears in New Testament studies and similar texts.

An online version of the decoder is available here.

Decoder formats

Three functionaly equivalent coding implementations are stored on this repository:

Definitional document

Parsing information.

Integrating in HTML page

The HTML implementation depends on Javascript being enabled. Either in the <HEADER> or <BODY> section define the following small script:

 <script>
    function openMinimalWindow() {
      window.open(
        'yourPage.html',
        '_blank',
        'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=800,height=600'
      );
    }
  </script>

In the <BODY> section include the following:

<button onclick="openMinimalWindow()">Open Morph decoder</button>