Class: Humpyard::UriParser::PagesUriParser
- Inherits:
-
Object
- Object
- Humpyard::UriParser::PagesUriParser
- Defined in:
- lib/humpyard/uri_parser/pages_uri_parser.rb
Class Method Summary collapse
Class Method Details
.substitute(content, options = {}) ⇒ Object
4 5 6 7 8 9 10 11 12 |
# File 'lib/humpyard/uri_parser/pages_uri_parser.rb', line 4 def self.substitute content, = {} content.gsub(/humpyard:\/\/page\/([0-9]*)/) do |uri| begin "#{[:prefix]}#{Page.find($1).human_url}#{[:postfix]}" rescue "#{[:prefix]}#{Page.root_page.human_url}#{[:postfix]}" end end end |