Class: Jekyll::Scholar::QuoteTag

Inherits:
Liquid::Block
  • Object
show all
Includes:
Utilities
Defined in:
lib/jekyll/scholar/tags/quote.rb

Instance Attribute Summary collapse

Attributes included from Utilities

#bibtex_file, #config, #context, #query, #site

Instance Method Summary collapse

Methods included from Utilities

#base_url, #bibliography, #bibtex_options, #bibtex_path, #cite, #cite_details, #cited_references, #content_tag, #details_file_for, #details_link_for, #details_path, #entries, #extend_path, #generate_details?, #link_to, #set_context_to

Constructor Details

#initialize(tag_name, arguments, tokens) ⇒ QuoteTag

Returns a new instance of QuoteTag.



9
10
11
12
13
14
# File 'lib/jekyll/scholar/tags/quote.rb', line 9

def initialize(tag_name, arguments, tokens)
  super
  
  @config = Scholar.defaults.dup
  @key = arguments.strip.split(/\s+/)[0]
end

Instance Attribute Details

#keyObject (readonly)

Returns the value of attribute key.



7
8
9
# File 'lib/jekyll/scholar/tags/quote.rb', line 7

def key
  @key
end

#pagesObject (readonly)

Returns the value of attribute pages.



7
8
9
# File 'lib/jekyll/scholar/tags/quote.rb', line 7

def pages
  @pages
end

Instance Method Details

#render(context) ⇒ Object



16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/jekyll/scholar/tags/quote.rb', line 16

def render(context)
  set_context_to context
  
  quote = super.strip.gsub(/\n\n/, '</p><p>').gsub(/\n/, '<br/>')
  quote =  :p, quote
  
  citation = cite(key)
  
  quote << (:cite, citation)
  
   :blockquote, quote
end