package
module
Version:
v0.0.0-...-f6b3835
Opens a new window with list of versions in this module.
Published: Apr 22, 2023
License: MIT
Opens a new window with license information.
Imports: 6
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
go-quran-tree
Quran exloration in go
Documentation
¶
type Aya struct {
Index int `xml:"index,attr,str"`
Text string `xml:"text,attr"`
}
type Character struct {
Letter rune
Tashkeels []rune
}
type Quran struct {
XMLName xml.Name `xml:"quran"`
Suras []Sura `xml:"sura"`
}
Quran represents the whole scripture
type Sura struct {
Index int `xml:"index,attr,str"`
Name string `xml:"name,attr"`
Ayas []Aya `xml:"aya"`
}
type Token struct {
Text string
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.