Module: RicherText
- Extended by:
- ActiveSupport::Autoload
- Defined in:
- lib/richer_text.rb,
lib/richer_text/mark.rb,
lib/richer_text/node.rb,
lib/richer_text/embed.rb,
lib/richer_text/engine.rb,
lib/richer_text/content.rb,
lib/richer_text/version.rb,
lib/richer_text/fragment.rb,
lib/richer_text/attribute.rb,
lib/richer_text/nodes/doc.rb,
lib/richer_text/rendering.rb,
lib/richer_text/embeddable.rb,
lib/richer_text/nodes/text.rb,
lib/richer_text/tag_helper.rb,
lib/richer_text/nodes/image.rb,
lib/richer_text/nodes/table.rb,
lib/richer_text/html_visitor.rb,
lib/richer_text/text_visitor.rb,
lib/richer_text/nodes/callout.rb,
lib/richer_text/nodes/heading.rb,
lib/richer_text/nodes/mention.rb,
lib/richer_text/serialization.rb,
app/models/richer_text/o_embed.rb,
lib/richer_text/nodes/list_item.rb,
lib/richer_text/nodes/paragraph.rb,
lib/richer_text/nodes/table_row.rb,
app/models/richer_text/json_text.rb,
app/models/richer_text/rich_text.rb,
lib/richer_text/nodes/blockquote.rb,
lib/richer_text/nodes/code_block.rb,
lib/richer_text/nodes/hard_break.rb,
lib/richer_text/nodes/table_cell.rb,
lib/richer_text/nodes/bullet_list.rb,
lib/richer_text/nodes/ordered_list.rb,
lib/richer_text/nodes/table_header.rb,
app/jobs/richer_text/application_job.rb,
lib/richer_text/nodes/iframely_embed.rb,
lib/richer_text/nodes/horizontal_rule.rb,
lib/richer_text/nodes/attachment_figure.rb,
lib/richer_text/nodes/richer_text_embed.rb,
lib/richer_text/nodes/attachment_gallery.rb,
app/models/richer_text/application_record.rb,
app/helpers/richer_text/application_helper.rb,
app/mailers/richer_text/application_mailer.rb,
app/controllers/richer_text/application_controller.rb,
lib/generators/richer_text/install/install_generator.rb,
app/helpers/richer_text/tag_helper.rb
Defined Under Namespace
Modules: ApplicationHelper, Attribute, Embeddable, Generators, Nodes, Rendering, Serialization, TagHelper
Classes: ApplicationController, ApplicationJob, ApplicationMailer, ApplicationRecord, Content, Embed, Engine, Fragment, HTMLVisitor, JsonText, Mark, Node, OEmbed, RichText, TextVisitor
Constant Summary
collapse
- VERSION =
"0.17.0"
Class Attribute Summary collapse
Class Attribute Details
61
62
63
|
# File 'lib/richer_text.rb', line 61
def default_form_options
@default_form_options ||= {}
end
|
.default_renderer ⇒ Object
53
54
55
|
# File 'lib/richer_text.rb', line 53
def default_renderer
@default_renderer ||= RicherText::HTMLVisitor.new
end
|
.default_text_renderer ⇒ Object
57
58
59
|
# File 'lib/richer_text.rb', line 57
def default_text_renderer
@default_text_renderer ||= RicherText::TextVisitor.new
end
|