Documentation ¶
Index ¶
- Variables
- func EachPage(ctx context.Context, f func(Page))
- func FindAllInAST[t ast.Node](n ast.Node) (a []t)
- func FindInAST[t ast.Node](n ast.Node) (found t, ok bool)
- func FuncName(f any) string
- func IgnoreDirectory(r *regexp.Regexp)
- func Listen(e PageEvent, h PageEventHandler)
- func Partial(path string, data Locals) template.HTML
- func RegisterAutocomplete(a Autocomplete)
- func RegisterBuildPage(p string, encloseInDir bool)
- func RegisterCommand(c func(Page) []Command)
- func RegisterHelper(name string, f interface{})
- func RegisterLink(l func(Page) []Link)
- func RegisterPageSource(p PageSource)
- func RegisterPreprocessor(f Preprocessor)
- func RegisterProperty(a func(Page) []Property)
- func RegisterQuickCommand(c func(Page) []Command)
- func RegisterStaticDir(f fs.FS)
- func RegisterTemplate(t fs.FS, subDir string)
- func RegisterWidget(s WidgetSpace, priority float32, f WidgetFunc)
- func RenderWidget(s WidgetSpace, p Page) (o template.HTML)
- func Start()
- func Trigger(e PageEvent, p Page)
- func Vars(r Request) map[string]string
- type Autocomplete
- type Command
- type HandlerFunc
- type Link
- type Locals
- type Markdown
- type Output
- func BadRequest(msg string) Output
- func InternalServerError(err error) Output
- func JsonResponse(a any) Output
- func NoContent() Output
- func NotFound(msg string) Output
- func PlainText(text string) Output
- func Redirect(url string) Output
- func Render(path string, data Locals) Output
- func Unauthorized(msg string) Output
- type Page
- type PageEvent
- type PageEventHandler
- type PageSource
- type Preprocessor
- type Property
- type Request
- type Response
- type Route
- type RouteCheck
- type Suggestion
- type WidgetFunc
- type WidgetSpace
Constants ¶
This section is empty.
Variables ¶
var ( SOURCE string // path to markdown files directory BUILD string // path to write built files READONLY bool // is dlog in readonly mode SITENAME string // name of knowledgebase SIDEBAR bool // is sidebar displayed INDEX string // name of the index page markdown file NOT_FOUND_PAGE string // name of the index page markdown file )
var ( // a function that renders CSRF hidden input field CSRF = csrf.TemplateField )
var MarkDownRenderer = goldmark.New( goldmark.WithExtensions( extension.GFM, extension.DefinitionList, extension.Footnote, extension.Typographer, highlighting.NewHighlighting( highlighting.WithCustomStyle(styles.Dracula), highlighting.WithFormatOptions( chroma_html.WithLineNumbers(true), ), ), emoji.Emoji, ), goldmark.WithParserOptions( parser.WithAutoHeadingID(), ), goldmark.WithRendererOptions( html.WithHardWraps(), html.WithUnsafe(), ), )
The instance of markdown renderer. this is what takes the page content and converts it to HTML. it defines what features to use from goldmark and what options to turn on
Functions ¶
func EachPage ¶
EachPage iterates on all available pages. many extensions uses it to get all pages and maybe parse them and extract needed information
func FindAllInAST ¶
Extract all nodes of a specific type from the AST
func FindInAST ¶
This is a function that takes an AST node and walks the tree depth first searching for a node of a specific type can be used to find first image, link, paragraph...etc
func IgnoreDirectory ¶
IgnoreDirectory Register a pattern to be ignored when walking directories.
func Listen ¶
func Listen(e PageEvent, h PageEventHandler)
Register an event handler to be executed when PageEvent is triggered. extensions can use this to register hooks under specific page events. extensions that keeps a cached version of the pages list for example needs to register handlers to update its cache
func Partial ¶
Partial executes a template by it's path name. it passes data to the template. returning the output of the template. in case of an error it will return the error string as the output
func RegisterAutocomplete ¶
func RegisterAutocomplete(a Autocomplete)
RegisterAutocomplete registers an autocomplete function. it should be used by an extension to register a new autocomplete function. these functions are going to be executed when rendering the edit page.
func RegisterBuildPage ¶
RegisterBuildPage registers a path of a page to export when building static version of the knowledgebase. encloseInDir will write the output to p/index.html instead instead of writing to p directly. that can help have paths with no .html extension to be served with the exact name.
func RegisterCommand ¶
RegisterCommand registers a new command
func RegisterHelper ¶
func RegisterHelper(name string, f interface{})
RegisterHelper registers a new helper function. all helpers are used when compiling templates. so registering helpers function must happen before the server starts as compiling templates happened right before starting the http server.
func RegisterLink ¶
Register a new links function, should return a list of Links
func RegisterPageSource ¶
func RegisterPageSource(p PageSource)
func RegisterPreprocessor ¶
func RegisterPreprocessor(f Preprocessor)
RegisterPreprocessor registers a Preprocessor function. extensions should use this function to register a preprocessor.
func RegisterProperty ¶
RegisterProperty registers a function that returns a set of properties for the page
func RegisterQuickCommand ¶
func RegisterStaticDir ¶
RegisterStaticDir adds a filesystem to the filesystems list scanned for files when serving static files. can be used to add a directory of CSS or JS files by extensions
func RegisterTemplate ¶
RegisterTemplate registers a filesystem that contains templates, specifying subDir as the subdirectory name that contains the templates. templates are registered such that the latest registered directory override older ones. template file extensions are signified by '.html' extension and the file path can be used as template name without this extension
func RegisterWidget ¶
func RegisterWidget(s WidgetSpace, priority float32, f WidgetFunc)
RegisterWidget Register a function to a widget space. functions registered will be executed in order of priority lower to higher when rendering view or edit page. the return values of these widgetfuncs will pass down to the template and injected in reserved places.
func RenderWidget ¶
func RenderWidget(s WidgetSpace, p Page) (o template.HTML)
This is used by view and edit routes to render all widgetfuncs registered for specific widget space.
func Start ¶
func Start()
Define the catch all HTTP routes, parse CLI flags and take actions like building the static pages and exit, or start the HTTP server
Types ¶
type Autocomplete ¶
type Autocomplete interface { StartChar() string Suggestions() []*Suggestion }
Autocomplete defines what character triggeres the autocomplete feature and what is the list to display in this case.
type Command ¶
type Command interface { // Icon returns the Fontawesome icon class name for the Command Icon() string // Name of the command. to be displayed in the list Name() string // Link returns the link/url/path of the command if any Link() string // OnClick action. a Javascript code to invoke when the command is executed OnClick() template.JS // Widget a HTML snippet to embed in the page that include any needed // assets, HTML, JS the command needs Widget() template.HTML }
Command define a command that a user can invoke in view or edit page on a Page.
func Commands ¶
Commands return the list of commands for a page. it executes all functions registered with RegisterCommand and collect all results in one slice. result can be passed to the view to render the commands list
func QuickCommands ¶
QuickCommands return the list of QuickCommands for a page. it executes all functions registered with RegisterQuickCommand and collect all results in one slice. result can be passed to the view to render the Quick commands list
type HandlerFunc ¶
HandlerFunc is the type of an HTTP handler function + returns output function. it makes it easier to return the output directly instead of writing the output to w then return.
type Link ¶
type Link interface { // Icon returns the fontawesome icon class name or emoji Icon() string // Name returns the link text Name() string // Link returns the Href property for the link (URL, Path, ...etc) Link() string }
Link represent link for the user interface, default theme renders it in the footer
type Locals ¶
type Locals map[string]interface{} // passed to templates
map of string to any value used for template rendering
type Markdown ¶
type Markdown string
Markdown is used instead of string to make sure it's clear the string is markdown string
func PreProcess ¶
This function take the page content and pass it through all registered preprocessors and return the last preprocessor output to the caller
type Output ¶
type Output = http.HandlerFunc
alias of http.HandlerFunc as output is expected from defined http handlers
func BadRequest ¶
BadRequest returns an output function that writes BadRequest http response
func InternalServerError ¶
InternalServerError returns an output function that writes InternalServerError http response
func JsonResponse ¶
func NoContent ¶
func NoContent() Output
NoContent returns an output function that writes NoContent http status
func Render ¶
Render returns an output function that renders partial with data and writes it as response
func Unauthorized ¶
Unauthorized returns an output function that writes Unauthorized http response
type Page ¶
type Page interface { // Name returns page name without '.md' extension Name() string // returns the filename, makes sure it converts slashes to backslashes when // needed. this is safe to use when trying to access the file that represent the // page FileName() string // checks if the page underlying file exists on disk or not. Exists() bool // Renders the page content to HTML. it makes sure all preprocessors are called Render() template.HTML // Reads the underlying file and returns the content Content() Markdown // Deletes the file and makes sure it triggers the AfterDelete event Delete() bool // Overwrite page content with new content. making sure to trigger before and // after write events. Write(Markdown) bool // ModTime Return the last modification time of the underlying file ModTime() time.Time // Parses the page content and returns the Abstract Syntax Tree (AST). // extensions can use it to walk the tree and modify it or collect statistics or // parts of the page. for example the following "Emoji" function uses it to // extract the first emoji. AST() ast.Node // Returns the first emoji of the page. Emoji() string }
a Type that represent a page.
type PageEvent ¶
type PageEvent int
a type used to define events to be used when the page is manipulated for example modified, renamed, deleted...etc.
List of page events. extensions can use these events to register a function to be executed when this event is triggered. extensions that require to be notified when the page is created or overwritten or deleted should register an event handler for the interesting events.
type PageEventHandler ¶
a function that handles a page event. this should be implemented by an extension and then registered. it will get executed when the event is triggered
type PageSource ¶
type Preprocessor ¶
A Preprocessor is a function that takes the whole page content and returns a modified version of the content. extensions should define this type and register is so that when page is rendered it will execute all of them in order like a pipeline each function output is passed as an input to the next. at the end the last preprocessor output is then rendered to HTML
type Property ¶
type Property interface { // Icon returns the fontawesome icon class name or emoji Icon() string // Name returns the link text Name() string }
Property represent a piece of information about the current page such as last update time, number of versions, number of words, reading time...etc
func Properties ¶
Properties return a list of properties for a page. It executes all functions registered with RegisterProperty and collect results in one slice. Can be passed to the view to render a page properties
type Response ¶
type Response = http.ResponseWriter
alias http.ResponseWriter for shorter handler declaration
type Route ¶
type Route struct {
// contains filtered or unexported fields
}
A route has handler function and set of RouteChecks if all checks are true, the last request will be passed to the handler function
func Delete ¶
func Delete(path string, handler HandlerFunc, middlewares ...func(http.HandlerFunc) http.HandlerFunc) Route
Delete defines a new route that gets executed when the request matches path and method is http Delete. the list of middlewares are executed in order
func Get ¶
func Get(path string, handler HandlerFunc, middlewares ...func(http.HandlerFunc) http.HandlerFunc) Route
Get defines a new route that gets executed when the request matches path and method is http Get. the list of middlewares are executed in order
func Match ¶
func Match(route http.HandlerFunc, checks ...RouteCheck) Route
Match Adds a new HTTP handler function to the list of routes with a list of checks functions. the list of checks are executed when a request comes in if all of them returned true the handler function gets executed.
func Post ¶
func Post(path string, handler HandlerFunc, middlewares ...func(http.HandlerFunc) http.HandlerFunc) Route
Post defines a new route that gets executed when the request matches path and method is http Post. the list of middlewares are executed in order
type RouteCheck ¶
Checks a request for conditions, may modify request returning the new request and if conditions are met.
Can be used to check request method, path or other attributes against expected values.
type Suggestion ¶
type Suggestion struct { Text string // The text that gets injected in the editor if this option is chosen DisplayText string // The display text for this item in the menu. this can be more cosmetic. it has to start with the StartChar as the editor filter the list using this field }
Suggestions represent an item in the list of autocomplete menu in the edit page
type WidgetFunc ¶
WidgetFunc a function that takes the current page and returns the widget. This can be used by extensions to define new widgets to be rendered in view or edit pages. the extension should define this func type and register it to be rendered in a specific widgetSpace such as before or after the page.
type WidgetSpace ¶
type WidgetSpace string
WidgetSpace used to represent a widgets spaces. it's used to register widgets to be injected in the view or edit pages
var ( AFTER_VIEW_WIDGET WidgetSpace = "after_view" // widgets rendered after the content of the view page BEFORE_VIEW_WIDGET WidgetSpace = "before_view" // widgets rendered before the content of the view page HEAD_WIDGET WidgetSpace = "head" // widgets rendered in page <head> tag )
List of widgets spaces that extensions can use to register a WidgetFunc to inject content into.