Documentation
¶
Overview ¶
Package speakerdeck is Fetch info and Download Slide from Speaker Deck for Go.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Category ¶
type Category struct {
Name string `json:"name"`
Slug string `json:"slug"`
URL string `json:"url"`
}
Category is speakerdeck category info
type Slide ¶
type Slide struct {
Slug string `json:"slug"`
Title string `json:"title"`
Description string `json:"description"`
DownloadURL string `json:"downloadUrl"`
User User `json:"user"`
Stars int `json:"stars"`
Category Category `json:"category"`
Published time.Time `json:"published"`
URL string `json:"url"`
}
Slide is speakerdeck slide info
func (*Slide) DownloadPDF ¶
DownloadPDF downloads PDF of target slide
Click to show internal directories.
Click to hide internal directories.