mirror of
https://github.com/moparisthebest/www.moparscape.org
synced 2024-11-04 16:35:08 -05:00
1. Added condition to full_url filter to allow it to be used as a root_url appending filter for remapping root "/" urls when octopress is deployed to a subdirectory. Updated _includes/article and _layouts/page to use the filter
2. Added documentation for the include_code plugin
This commit is contained in:
parent
05e4b7951d
commit
44e1351fc7
@ -11,10 +11,10 @@
|
||||
</header>
|
||||
{% endunless %}
|
||||
{% if index %}
|
||||
<div class="entry-content">{{ content | exerpt | smart_quotes }}</div>
|
||||
<div class="entry-content">{{ content | full_urls: site.root | exerpt | smart_quotes }}</div>
|
||||
<footer>
|
||||
<a rel="full-article" href="{{ site.root }}{{ post.url }}">Read on →</a>
|
||||
</footer>
|
||||
{% else %}
|
||||
<div class="entry-content">{{ content | smart_quotes }}</div>
|
||||
<div class="entry-content">{{ content | full_urls: site.root | smart_quotes }}</div>
|
||||
{% endif %}
|
||||
|
@ -8,7 +8,7 @@ layout: default
|
||||
<h1 class="entry-title">{{ page.title | titlecase }}</h1>
|
||||
{% if page.date %}<p class="meta">{% include post/date.html %}</p>{% endif %}
|
||||
</header>
|
||||
{{ content | smart_quotes }}
|
||||
{{ content | full_urls: site.root | smart_quotes }}
|
||||
{% unless page.footer == false %}
|
||||
<footer>
|
||||
{% if page.date %}<p class="meta">{% include post/date.html %}</p>{% endif %}
|
||||
|
@ -21,6 +21,7 @@ module OctopressFilters
|
||||
|
||||
# Replaces relative urls with full urls
|
||||
def full_urls(input, url='')
|
||||
url ||= ''
|
||||
input.gsub /(\s+(href|src)\s*=\s*["|']{1})(\/[^\"'>]+)/ do
|
||||
$1+url+$3
|
||||
end
|
||||
|
@ -5,13 +5,20 @@
|
||||
#
|
||||
# Syntax {% include_code path/to/file %}
|
||||
#
|
||||
# Example:
|
||||
# Example 1:
|
||||
# {% include_code javascripts/test.js %}
|
||||
#
|
||||
# This will import test.js from source/downloads/code/javascripts/test.js
|
||||
# and output the contents in a syntax highlighted code block inside a figure,
|
||||
# with a figcaption listing the file name and download link
|
||||
#
|
||||
# Example 2:
|
||||
# You can also include an optional title for the <figcaption>
|
||||
#
|
||||
# {% include_code Example 2 javascripts/test.js %}
|
||||
#
|
||||
# will output a figcaption with the title: Example 2 (test.js)
|
||||
#
|
||||
|
||||
require 'pathname'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user