Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mkd-callbacks(3) [debian man page]

MKD_CALLBACKS(3)					   BSD Library Functions Manual 					  MKD_CALLBACKS(3)

NAME
mkd_callbacks -- functions that modify link targets LIBRARY
Markdown (libmarkdown, -lmarkdown) SYNOPSIS
#include <mkdio.h> char* (*mkd_callback_t)(const char*, const int, void*); void (*mkd_free_t)(char *, void*); void mkd_e_url(MMIOT *document, mkd_callback_t edit); void mkd_e_flags(MMIOT *document, mkd_callback_t edit); void mkd_e_free(MMIOT *document, mkd_free_t dealloc); void mkd_e_data(MMIOT *document, void *data); DESCRIPTION
Discount provides a small set of data access functions to let a library user modify the targets given in a `[]' link, and to add additional flags to the generated link. The data access functions are passed a character pointer to the url being generated, the size of the url, and a data pointer pointing to a user data area (set by the mkd_e_data() function.) After the callback function is called (either mkd_e_url() or mkd_e_flags()) the data freeing function (if supplied) is called and passed the character pointer and user data pointer. EXAMPLE
The mkd_basename() function (in the module basename.c) is implemented by means of mkd callbacks; it modifies urls that start with a `/' so that they begin with a user-supplied url base by allocating a new string and filling it with the base + the url. Discount plugs that url in in place of the original, then calls the basename free function (it only does this when mkd_e_url() or mkd_e_flags() returns nonzero) to deallocate this memory. Note that only one level of callbacks are supported; if you wish to do multiple callbacks, you need to write your own code to handle them all. SEE ALSO
markdown(1), markdown(3), mkd-line(3), markdown(7), mkd-extensions(7), mmap(2). basename.c http://daringfireball.net/projects/markdown/syntax BUGS
Error handling is minimal at best. Mastodon January 18, 2008 Mastodon

Check Out this Related Man Page

THEME(1)						    BSD General Commands Manual 						  THEME(1)

NAME
theme -- create a web page from a template file SYNOPSIS
theme [-d root] [-E] [-f] [-o file] [-p pagename] [-t template] [-V] [textfile] DESCRIPTION
The theme utility takes a markdown(7)-formatted textfile (or stdin if not specified,) compiles it, and combines it with a template (page.theme by default) to produce a web page. If a path to the template is not specified, theme looks for page.theme in the current direc- tory, then each parent directory up to the document root (set with -d or, if unset, the root directory of the system.) If page.theme is found, theme copies it to the output, looking for <?theme action?> html tags and processing the embedded action as appropriate. theme processes the following actions: author Prints the author name(s) from the mkd_doc_author(3) function. body Prints the formatted markdown(7) input file. date Prints the date returned by mkd_doc_date(3) or, if none, the date the input file was last modified. dir Prints the directory part of the pagename include(file) Prints the contents of file. Markdown(7) translation will NOT be done on this file. source The filename part of the pagename. style Print any stylesheets (see mkd-extensions(7)) found in the input file. title Print the title returned by mkd_doc_title(3), or, if that does not exist, the source filename. version Print the version of discount(7) that this copy of theme was compiled with. If input is coming from a file and the output was not set with the -o option, writes the output to file-sans-text.html (if) file has a .text suffix, that will be stripped off and replaced with .html; otherwise a .html will be appended to the end of the filename.) The options are as follows: -d root Set the document root to root -E Normally theme will not expand <?theme body?> or <?theme toc?> in the <head> section, or <?theme style?> in the <body> section, but the -E option overrides this and allows expansions everywhere. -f Forcibly overwrite existing html files. -o filename Write the output to filename. -p path Set the pagename to path. -t filename Use filename as the template file. RETURN VALUES
The theme utility exits 0 on success, and >0 if an error occurs. SEE ALSO
markdown(1), markdown(3), markdown(7), mkd-extensions(7). AUTHOR
David Parsons (orc@pell.chi.il.us) MASTODON
January 23, 2008 MASTODON
Man Page