Sha256: f50f6214f73c790a5a6870b0a46283584b645ddfc67ac1e5cf7c7dd040cf70cf
Contents?: true
Size: 1.77 KB
Versions: 2
Compression:
Stored size: 1.77 KB
Contents
# # $Id: htmlutils.rb 2227 2006-05-13 00:09:08Z aamine $ # # Copyright (c) 2002-2006 Minero Aoki # # This program is free software. # You can distribute or modify this program under the terms of # the GNU LGPL, Lesser General Public License version 2.1. # module ReVIEW module HTMLUtils ESC = { '&' => '&', '<' => '<', '>' => '>', '"' => '"' } def escape_html(str) t = ESC str.gsub(/[&"<>]/) {|c| t[c] } end alias_method :escape, :escape_html def unescape_html(str) # FIXME better code str.gsub('"', '"').gsub('>', '>').gsub('<', '<').gsub('&', '&') end alias_method :unescape, :unescape_html def strip_html(str) str.gsub(/<\/?[^>]*>/, "") end def escape_comment(str) str.gsub('-', '-') end def highlight(ops) body = ops[:body] || '' lexer = ops[:lexer] || '' format = ops[:format] || '' return body if @book.config["pygments"].nil? begin require 'pygments' begin Pygments.highlight( unescape_html(body), :options => { :nowrap => true, :noclasses => true }, :formatter => format, :lexer => lexer) rescue MentosError body end rescue LoadError body end end def normalize_id(id) if id =~ /\A[a-z][a-z0-9_.-]*\Z/i return id elsif id =~ /\A[0-9_.-][a-z0-9_.-]*\Z/i return "id_#{id}" # dummy prefix else return "id_#{CGI.escape(id.gsub("_", "__")).gsub("%", "_").gsub("+", "-")}" # escape all end end end end # module ReVIEW
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
review-1.4.0 | lib/review/htmlutils.rb |
review-1.3.0 | lib/review/htmlutils.rb |