1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- divert(-1)
- changeword(`[_a-zA-Z<][_a-zA-Z0-9>.]*')
- #------------------------------------------------------------------------------
- # Macro for todo classes
- # Usage:
- # <todo>
- # It's replaced by '<p class=todo>'. Meant to be placed in the line preceding
- define(`<todo>', `<p class=t`'odo>')
- #------------------------------------------------------------------------------
- # A link dictionary
- # Usage:
- # links.push(`Key', `Value')
- # links.fetch(`Key')
- define(`links.push', `define(format(``array[%s]'', `$1'), `$2')')
- define(`links.fetch', `defn(format(``array[%s]'', `$1'))')
- # Key must come immediately after the '('
- links.push(`dispelling_nk_myths',
- `https://www.youtube.com/watch?v=HNf3wM0feb8')
- links.push(`political_philosophy_playlist',
- `https://www.youtube.com/playlist?list=PLcmaziH9sW6PFy1IiiBKOLdhifFMC2uwa')
- #------------------------------------------------------------------------------
- divert`'dnl
|