Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ParseBytes ¶
ParseBytes gets slice of pdf.Text from content bytes using reader.ReadBytes, parses content using parseText and returns content bytes.
Types ¶
type Clock ¶ added in v0.1.2
type Clock struct {
// contains filtered or unexported fields
}
Clock contains hours and minutes values.
type Event ¶ added in v0.1.1
type Event struct {
Title string `json:"title"`
Teacher string `json:"teacher"`
Type string `json:"type"`
Subgroup string `json:"subgroup"`
Location string `json:"location"`
Dates []EventDate `json:"dates"`
}
Event is retrieved from RawEvent. It is contained in output json.
type EventDate ¶ added in v0.1.2
type EventDate struct {
Start time.Time `json:"start"`
End time.Time `json:"end"`
Frequency string `json:"frequency"`
}
EventDate contains start/end datetime and frequency of schedule event.
Click to show internal directories.
Click to hide internal directories.