Last active
February 23, 2019 22:32
-
-
Save jdkato/96365af836e6543d91480c849a5a5802 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def main(meta, arg1, arg2): | |
| """An example directive. | |
| These functions return a string that replaces the original | |
| directive in the Markdown source file. | |
| `meta` is a dictionary created from front matter (`{}` by | |
| default). In this case, it will be: | |
| {'title': 'An example Markdown file'} | |
| """ | |
| return 'this is a string' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment