diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-06-15 18:31:22 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-06-15 18:38:25 -0400 |
commit | ab29d45ae81760e82a6715a41674f58c3f51683a (patch) | |
tree | b02264d2b2be677dd042971862b5fedd7f4d9bcc /_config.yml | |
parent | fea1cc49d939d09c6a3e4d41322bd40e2125d94f (diff) | |
download | my_new_personal_website-ab29d45ae81760e82a6715a41674f58c3f51683a.tar.xz my_new_personal_website-ab29d45ae81760e82a6715a41674f58c3f51683a.zip |
1. Added new include_code tag to allow auhtors to insert files from the file system with syntax highligting and a download link
2. Improved the gist tag to properly insert the sources in <noscript> tags
3. Improved semantics in the blockquote plugin and DRYed things up.
4. Pygments caching now stores to the _code_cache directory by default
5. Added a configuration for the default include_code directory
6. Updated the .gitignore
Diffstat (limited to '_config.yml')
-rw-r--r-- | _config.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/_config.yml b/_config.yml index 650ab277..0e50cab6 100644 --- a/_config.yml +++ b/_config.yml @@ -1,16 +1,17 @@ # Required configuration source: source destination: public +code_dir: downloads/code port: 4000 -url: http://yoursite.com +url: http://octopress.dev title: My Octopress Blog subtitle: A blogging framework for hackers. author: Your Name subscribe_rss: /atom.xml subscribe_email: http://feedburner.com/asdfasdf -markdown: rdiscount +#markdown: rdiscount pygments: true recent_posts: 1 simple_search: http://google.com/search |