2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-09 18:04:34 +00:00
|
|
|
require 'singleton'
|
2017-04-27 12:42:22 +00:00
|
|
|
require_relative './sanitize_config'
|
2016-09-09 18:04:34 +00:00
|
|
|
|
2019-05-12 20:13:36 +00:00
|
|
|
class HTMLRenderer < Redcarpet::Render::HTML
|
|
|
|
def block_code(code, language)
|
2019-05-17 08:43:17 +00:00
|
|
|
"<pre><code>#{encode(code).gsub("\n", "<br/>")}</code></pre>"
|
2019-05-12 20:13:36 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def autolink(link, link_type)
|
|
|
|
return link if link_type == :email
|
|
|
|
Formatter.instance.link_url(link)
|
|
|
|
end
|
2019-05-17 08:43:17 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def html_entities
|
|
|
|
@html_entities ||= HTMLEntities.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def encode(html)
|
|
|
|
html_entities.encode(html)
|
|
|
|
end
|
2019-05-12 20:13:36 +00:00
|
|
|
end
|
|
|
|
|
2016-09-09 18:04:34 +00:00
|
|
|
class Formatter
|
|
|
|
include Singleton
|
2016-11-05 14:20:05 +00:00
|
|
|
include RoutingHelper
|
2016-09-09 18:04:34 +00:00
|
|
|
|
|
|
|
include ActionView::Helpers::TextHelper
|
|
|
|
|
2017-12-06 10:41:57 +00:00
|
|
|
def format(status, **options)
|
2017-05-12 15:46:44 +00:00
|
|
|
if status.reblog?
|
|
|
|
prepend_reblog = status.reblog.account.acct
|
|
|
|
status = status.proper
|
|
|
|
else
|
|
|
|
prepend_reblog = false
|
|
|
|
end
|
|
|
|
|
2017-06-04 12:58:57 +00:00
|
|
|
raw_content = status.text
|
2016-09-09 18:04:34 +00:00
|
|
|
|
2019-03-28 03:44:59 +00:00
|
|
|
if options[:inline_poll_options] && status.preloadable_poll
|
|
|
|
raw_content = raw_content + "\n\n" + status.preloadable_poll.options.map { |title| "[ ] #{title}" }.join("\n")
|
2019-03-05 20:09:18 +00:00
|
|
|
end
|
|
|
|
|
2018-03-07 07:28:52 +00:00
|
|
|
return '' if raw_content.blank?
|
|
|
|
|
2017-09-19 00:42:40 +00:00
|
|
|
unless status.local?
|
|
|
|
html = reformat(raw_content)
|
2018-08-30 21:14:01 +00:00
|
|
|
html = encode_custom_emojis(html, status.emojis, options[:autoplay]) if options[:custom_emojify]
|
2017-09-19 15:55:48 +00:00
|
|
|
return html.html_safe # rubocop:disable Rails/OutputSafety
|
2017-09-19 00:42:40 +00:00
|
|
|
end
|
2017-05-05 17:48:22 +00:00
|
|
|
|
2018-10-17 15:13:04 +00:00
|
|
|
linkable_accounts = status.active_mentions.map(&:account)
|
2017-05-12 15:46:44 +00:00
|
|
|
linkable_accounts << status.account
|
|
|
|
|
2017-05-10 22:28:10 +00:00
|
|
|
html = raw_content
|
2017-05-12 15:46:44 +00:00
|
|
|
html = "RT @#{prepend_reblog} #{html}" if prepend_reblog
|
2019-05-12 18:20:05 +00:00
|
|
|
html = format_markdown(html) if status.content_type == 'text/markdown'
|
2019-05-12 19:33:37 +00:00
|
|
|
html = encode_and_link_urls(html, linkable_accounts, keep_html: %w(text/markdown text/html).include?(status.content_type))
|
2018-08-30 21:14:01 +00:00
|
|
|
html = encode_custom_emojis(html, status.emojis, options[:autoplay]) if options[:custom_emojify]
|
2019-05-12 20:13:36 +00:00
|
|
|
|
2019-05-21 20:57:59 +00:00
|
|
|
if %w(text/markdown text/html).include?(status.content_type)
|
|
|
|
html = reformat(html)
|
|
|
|
else
|
2019-05-12 20:13:36 +00:00
|
|
|
html = simple_format(html, {}, sanitize: false)
|
|
|
|
html = html.delete("\n")
|
|
|
|
end
|
2016-09-09 18:04:34 +00:00
|
|
|
|
2016-11-15 15:56:29 +00:00
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
2016-09-09 18:04:34 +00:00
|
|
|
end
|
|
|
|
|
2019-05-12 18:20:05 +00:00
|
|
|
def format_markdown(html)
|
2019-05-21 20:57:59 +00:00
|
|
|
html = markdown_formatter.render(html)
|
2019-05-12 20:13:36 +00:00
|
|
|
html.delete("\r").delete("\n")
|
2019-05-12 18:20:05 +00:00
|
|
|
end
|
|
|
|
|
2016-11-07 00:14:12 +00:00
|
|
|
def reformat(html)
|
2017-09-19 15:55:48 +00:00
|
|
|
sanitize(html, Sanitize::Config::MASTODON_STRICT)
|
2016-11-07 00:14:12 +00:00
|
|
|
end
|
|
|
|
|
2017-03-03 22:45:48 +00:00
|
|
|
def plaintext(status)
|
|
|
|
return status.text if status.local?
|
2017-09-19 00:42:40 +00:00
|
|
|
|
|
|
|
text = status.text.gsub(/(<br \/>|<br>|<\/p>)+/) { |match| "#{match}\n" }
|
|
|
|
strip_tags(text)
|
2017-03-03 22:45:48 +00:00
|
|
|
end
|
|
|
|
|
2018-04-01 21:55:42 +00:00
|
|
|
def simplified_format(account, **options)
|
2018-04-26 23:38:10 +00:00
|
|
|
html = account.local? ? linkify(account.note) : reformat(account.note)
|
2018-08-30 21:14:01 +00:00
|
|
|
html = encode_custom_emojis(html, account.emojis, options[:autoplay]) if options[:custom_emojify]
|
2018-04-01 21:55:42 +00:00
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
2016-09-09 18:04:34 +00:00
|
|
|
end
|
|
|
|
|
2017-04-27 12:42:22 +00:00
|
|
|
def sanitize(html, config)
|
|
|
|
Sanitize.fragment(html, config)
|
|
|
|
end
|
|
|
|
|
2018-08-31 13:16:59 +00:00
|
|
|
def format_spoiler(status, **options)
|
2017-09-22 23:50:17 +00:00
|
|
|
html = encode(status.spoiler_text)
|
2018-08-30 21:14:01 +00:00
|
|
|
html = encode_custom_emojis(html, status.emojis, options[:autoplay])
|
2017-09-22 23:50:17 +00:00
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
|
|
|
end
|
|
|
|
|
2019-03-20 16:29:12 +00:00
|
|
|
def format_poll_option(status, option, **options)
|
|
|
|
html = encode(option.title)
|
|
|
|
html = encode_custom_emojis(html, status.emojis, options[:autoplay])
|
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
|
|
|
end
|
|
|
|
|
2018-05-06 09:48:51 +00:00
|
|
|
def format_display_name(account, **options)
|
|
|
|
html = encode(account.display_name.presence || account.username)
|
2018-08-30 21:14:01 +00:00
|
|
|
html = encode_custom_emojis(html, account.emojis, options[:autoplay]) if options[:custom_emojify]
|
2018-05-06 09:48:51 +00:00
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
|
|
|
end
|
|
|
|
|
|
|
|
def format_field(account, str, **options)
|
2018-04-14 10:41:08 +00:00
|
|
|
return reformat(str).html_safe unless account.local? # rubocop:disable Rails/OutputSafety
|
2018-05-06 09:48:51 +00:00
|
|
|
html = encode_and_link_urls(str, me: true)
|
2018-08-30 21:14:01 +00:00
|
|
|
html = encode_custom_emojis(html, account.emojis, options[:autoplay]) if options[:custom_emojify]
|
2018-05-06 09:48:51 +00:00
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
2018-04-14 10:41:08 +00:00
|
|
|
end
|
|
|
|
|
2017-11-30 03:06:20 +00:00
|
|
|
def linkify(text)
|
|
|
|
html = encode_and_link_urls(text)
|
|
|
|
html = simple_format(html, {}, sanitize: false)
|
|
|
|
html = html.delete("\n")
|
|
|
|
|
|
|
|
html.html_safe # rubocop:disable Rails/OutputSafety
|
|
|
|
end
|
|
|
|
|
2019-05-12 20:13:36 +00:00
|
|
|
def link_url(url)
|
|
|
|
"<a href=\"#{encode(url)}\" target=\"blank\" rel=\"nofollow noopener\">#{link_html(url)}</a>"
|
|
|
|
end
|
|
|
|
|
2016-09-09 18:04:34 +00:00
|
|
|
private
|
|
|
|
|
2019-05-17 09:14:09 +00:00
|
|
|
def markdown_formatter
|
|
|
|
extensions = {
|
|
|
|
autolink: true,
|
|
|
|
no_intra_emphasis: true,
|
|
|
|
fenced_code_blocks: true,
|
|
|
|
disable_indented_code_blocks: true,
|
|
|
|
strikethrough: true,
|
|
|
|
lax_spacing: true,
|
|
|
|
space_after_headers: true,
|
|
|
|
superscript: true,
|
|
|
|
underline: true,
|
|
|
|
highlight: true,
|
|
|
|
footnotes: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
renderer = HTMLRenderer.new({
|
|
|
|
filter_html: false,
|
|
|
|
escape_html: false,
|
|
|
|
no_images: true,
|
|
|
|
no_styles: true,
|
|
|
|
safe_links_only: true,
|
|
|
|
hard_wrap: true,
|
|
|
|
link_attributes: { target: '_blank', rel: 'nofollow noopener' },
|
|
|
|
})
|
|
|
|
|
2019-05-23 16:53:24 +00:00
|
|
|
Redcarpet::Markdown.new(renderer, extensions)
|
2019-05-17 09:14:09 +00:00
|
|
|
end
|
|
|
|
|
2018-10-11 22:15:55 +00:00
|
|
|
def html_entities
|
|
|
|
@html_entities ||= HTMLEntities.new
|
|
|
|
end
|
|
|
|
|
2016-09-09 18:04:34 +00:00
|
|
|
def encode(html)
|
2018-10-11 22:15:55 +00:00
|
|
|
html_entities.encode(html)
|
2016-09-09 18:04:34 +00:00
|
|
|
end
|
|
|
|
|
2018-04-14 10:41:08 +00:00
|
|
|
def encode_and_link_urls(html, accounts = nil, options = {})
|
|
|
|
if accounts.is_a?(Hash)
|
|
|
|
options = accounts
|
|
|
|
accounts = nil
|
|
|
|
end
|
|
|
|
|
2019-05-12 20:13:36 +00:00
|
|
|
entities = options[:keep_html] ? html_friendly_extractor(html) : utf8_friendly_extractor(html, extract_url_without_protocol: false)
|
|
|
|
|
2019-05-12 18:20:05 +00:00
|
|
|
rewrite(html.dup, entities, options[:keep_html]) do |entity|
|
2017-05-05 17:48:22 +00:00
|
|
|
if entity[:url]
|
2018-04-14 10:41:08 +00:00
|
|
|
link_to_url(entity, options)
|
2017-05-05 17:48:22 +00:00
|
|
|
elsif entity[:hashtag]
|
|
|
|
link_to_hashtag(entity)
|
|
|
|
elsif entity[:screen_name]
|
2017-05-12 15:46:44 +00:00
|
|
|
link_to_mention(entity, accounts)
|
2017-05-05 17:48:22 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-04-19 12:52:18 +00:00
|
|
|
|
2017-11-07 13:48:13 +00:00
|
|
|
def count_tag_nesting(tag)
|
|
|
|
if tag[1] == '/' then -1
|
|
|
|
elsif tag[-2] == '/' then 0
|
|
|
|
else 1
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-30 21:14:01 +00:00
|
|
|
def encode_custom_emojis(html, emojis, animate = false)
|
2017-09-19 00:42:40 +00:00
|
|
|
return html if emojis.empty?
|
|
|
|
|
2018-08-30 21:14:01 +00:00
|
|
|
emoji_map = if animate
|
2018-11-16 14:02:18 +00:00
|
|
|
emojis.each_with_object({}) { |e, h| h[e.shortcode] = full_asset_url(e.image.url) }
|
2018-08-30 21:14:01 +00:00
|
|
|
else
|
2018-11-16 14:02:18 +00:00
|
|
|
emojis.each_with_object({}) { |e, h| h[e.shortcode] = full_asset_url(e.image.url(:static)) }
|
2018-08-30 21:14:01 +00:00
|
|
|
end
|
2017-09-19 00:42:40 +00:00
|
|
|
|
|
|
|
i = -1
|
2017-11-07 13:48:13 +00:00
|
|
|
tag_open_index = nil
|
2017-09-19 00:42:40 +00:00
|
|
|
inside_shortname = false
|
|
|
|
shortname_start_index = -1
|
2017-11-07 13:48:13 +00:00
|
|
|
invisible_depth = 0
|
2017-09-19 00:42:40 +00:00
|
|
|
|
|
|
|
while i + 1 < html.size
|
|
|
|
i += 1
|
|
|
|
|
2017-11-07 13:48:13 +00:00
|
|
|
if invisible_depth.zero? && inside_shortname && html[i] == ':'
|
2017-09-19 00:42:40 +00:00
|
|
|
shortcode = html[shortname_start_index + 1..i - 1]
|
|
|
|
emoji = emoji_map[shortcode]
|
|
|
|
|
|
|
|
if emoji
|
2018-10-11 22:15:55 +00:00
|
|
|
replacement = "<img draggable=\"false\" class=\"emojione\" alt=\":#{encode(shortcode)}:\" title=\":#{encode(shortcode)}:\" src=\"#{encode(emoji)}\" />"
|
2017-09-19 00:42:40 +00:00
|
|
|
before_html = shortname_start_index.positive? ? html[0..shortname_start_index - 1] : ''
|
|
|
|
html = before_html + replacement + html[i + 1..-1]
|
|
|
|
i += replacement.size - (shortcode.size + 2) - 1
|
|
|
|
else
|
|
|
|
i -= 1
|
|
|
|
end
|
|
|
|
|
|
|
|
inside_shortname = false
|
2017-11-07 13:48:13 +00:00
|
|
|
elsif tag_open_index && html[i] == '>'
|
|
|
|
tag = html[tag_open_index..i]
|
|
|
|
tag_open_index = nil
|
|
|
|
if invisible_depth.positive?
|
|
|
|
invisible_depth += count_tag_nesting(tag)
|
|
|
|
elsif tag == '<span class="invisible">'
|
|
|
|
invisible_depth = 1
|
|
|
|
end
|
2017-09-19 00:42:40 +00:00
|
|
|
elsif html[i] == '<'
|
2017-11-07 13:48:13 +00:00
|
|
|
tag_open_index = i
|
2017-09-19 00:42:40 +00:00
|
|
|
inside_shortname = false
|
2017-11-07 13:48:13 +00:00
|
|
|
elsif !tag_open_index && html[i] == ':'
|
2017-09-19 00:42:40 +00:00
|
|
|
inside_shortname = true
|
|
|
|
shortname_start_index = i
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
html
|
|
|
|
end
|
|
|
|
|
2019-05-12 18:20:05 +00:00
|
|
|
def rewrite(text, entities, keep_html = false)
|
2019-05-15 04:54:06 +00:00
|
|
|
text = text.to_s
|
2017-04-19 12:52:18 +00:00
|
|
|
|
2017-05-12 15:46:44 +00:00
|
|
|
# Sort by start index
|
2017-05-05 17:48:22 +00:00
|
|
|
entities = entities.sort_by do |entity|
|
|
|
|
indices = entity.respond_to?(:indices) ? entity.indices : entity[:indices]
|
|
|
|
indices.first
|
|
|
|
end
|
|
|
|
|
|
|
|
result = []
|
2017-05-12 15:46:44 +00:00
|
|
|
|
2017-04-19 12:52:18 +00:00
|
|
|
last_index = entities.reduce(0) do |index, entity|
|
2017-05-05 17:48:22 +00:00
|
|
|
indices = entity.respond_to?(:indices) ? entity.indices : entity[:indices]
|
2019-05-12 18:20:05 +00:00
|
|
|
result << (keep_html ? text[index...indices.first] : encode(text[index...indices.first]))
|
2017-05-05 17:48:22 +00:00
|
|
|
result << yield(entity)
|
2017-04-19 12:52:18 +00:00
|
|
|
indices.last
|
|
|
|
end
|
2017-05-12 15:46:44 +00:00
|
|
|
|
2019-05-12 18:20:05 +00:00
|
|
|
result << (keep_html ? text[last_index..-1] : encode(text[last_index..-1]))
|
2017-04-19 12:52:18 +00:00
|
|
|
|
2017-05-05 17:48:22 +00:00
|
|
|
result.flatten.join
|
|
|
|
end
|
2016-09-09 18:04:34 +00:00
|
|
|
|
2019-02-09 19:13:11 +00:00
|
|
|
UNICODE_ESCAPE_BLACKLIST_RE = /\p{Z}|\p{P}/
|
|
|
|
|
2019-02-02 18:01:18 +00:00
|
|
|
def utf8_friendly_extractor(text, options = {})
|
|
|
|
old_to_new_index = [0]
|
|
|
|
|
|
|
|
escaped = text.chars.map do |c|
|
2019-02-09 19:13:11 +00:00
|
|
|
output = begin
|
|
|
|
if c.ord.to_s(16).length > 2 && UNICODE_ESCAPE_BLACKLIST_RE.match(c).nil?
|
|
|
|
CGI.escape(c)
|
|
|
|
else
|
|
|
|
c
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-02 18:01:18 +00:00
|
|
|
old_to_new_index << old_to_new_index.last + output.length
|
2019-02-09 19:13:11 +00:00
|
|
|
|
2019-02-02 18:01:18 +00:00
|
|
|
output
|
|
|
|
end.join
|
|
|
|
|
|
|
|
# Note: I couldn't obtain list_slug with @user/list-name format
|
|
|
|
# for mention so this requires additional check
|
2019-02-09 02:39:38 +00:00
|
|
|
special = Extractor.extract_urls_with_indices(escaped, options).map do |extract|
|
2019-02-02 18:01:18 +00:00
|
|
|
new_indices = [
|
|
|
|
old_to_new_index.find_index(extract[:indices].first),
|
|
|
|
old_to_new_index.find_index(extract[:indices].last),
|
|
|
|
]
|
|
|
|
|
|
|
|
next extract.merge(
|
2019-05-15 04:54:06 +00:00
|
|
|
indices: new_indices,
|
|
|
|
url: text[new_indices.first..new_indices.last - 1]
|
2019-02-02 18:01:18 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
standard = Extractor.extract_entities_with_indices(text, options)
|
|
|
|
|
|
|
|
Extractor.remove_overlapping_entities(special + standard)
|
|
|
|
end
|
|
|
|
|
2019-05-12 20:13:36 +00:00
|
|
|
def html_friendly_extractor(html, options = {})
|
|
|
|
gaps = []
|
|
|
|
total_offset = 0
|
|
|
|
|
|
|
|
escaped = html.gsub(/<[^>]*>/) do |match|
|
|
|
|
total_offset += match.length - 1
|
|
|
|
end_offset = Regexp.last_match.end(0)
|
|
|
|
gaps << [end_offset - total_offset, total_offset]
|
|
|
|
"\u200b"
|
|
|
|
end
|
|
|
|
|
|
|
|
entities = Extractor.extract_hashtags_with_indices(escaped, :check_url_overlap => false) +
|
|
|
|
Extractor.extract_mentions_or_lists_with_indices(escaped)
|
|
|
|
Extractor.remove_overlapping_entities(entities).map do |extract|
|
|
|
|
pos = extract[:indices].first
|
|
|
|
offset_idx = gaps.rindex { |gap| gap.first <= pos }
|
|
|
|
offset = offset_idx.nil? ? 0 : gaps[offset_idx].last
|
|
|
|
next extract.merge(
|
|
|
|
:indices => [extract[:indices].first + offset, extract[:indices].last + offset]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-14 10:41:08 +00:00
|
|
|
def link_to_url(entity, options = {})
|
2018-01-03 19:51:33 +00:00
|
|
|
url = Addressable::URI.parse(entity[:url])
|
|
|
|
html_attrs = { target: '_blank', rel: 'nofollow noopener' }
|
2017-05-12 15:46:44 +00:00
|
|
|
|
2018-04-14 10:41:08 +00:00
|
|
|
html_attrs[:rel] = "me #{html_attrs[:rel]}" if options[:me]
|
|
|
|
|
2018-01-03 19:51:33 +00:00
|
|
|
Twitter::Autolink.send(:link_to_text, entity, link_html(entity[:url]), url, html_attrs)
|
2017-08-02 12:54:33 +00:00
|
|
|
rescue Addressable::URI::InvalidURIError, IDN::Idna::IdnaError
|
2017-05-09 16:17:41 +00:00
|
|
|
encode(entity[:url])
|
2016-09-09 18:04:34 +00:00
|
|
|
end
|
|
|
|
|
2017-05-12 15:46:44 +00:00
|
|
|
def link_to_mention(entity, linkable_accounts)
|
2017-05-05 17:48:22 +00:00
|
|
|
acct = entity[:screen_name]
|
2017-05-12 15:46:44 +00:00
|
|
|
|
|
|
|
return link_to_account(acct) unless linkable_accounts
|
|
|
|
|
|
|
|
account = linkable_accounts.find { |item| TagManager.instance.same_acct?(item.acct, acct) }
|
2018-10-11 22:15:55 +00:00
|
|
|
account ? mention_html(account) : "@#{encode(acct)}"
|
2017-05-05 17:48:22 +00:00
|
|
|
end
|
2017-03-28 12:16:08 +00:00
|
|
|
|
2017-05-05 17:48:22 +00:00
|
|
|
def link_to_account(acct)
|
|
|
|
username, domain = acct.split('@')
|
2017-05-12 15:46:44 +00:00
|
|
|
|
|
|
|
domain = nil if TagManager.instance.local_domain?(domain)
|
2018-04-26 23:38:10 +00:00
|
|
|
account = EntityCache.instance.mention(username, domain)
|
2017-05-12 15:46:44 +00:00
|
|
|
|
2018-10-11 22:15:55 +00:00
|
|
|
account ? mention_html(account) : "@#{encode(acct)}"
|
2017-03-28 12:16:08 +00:00
|
|
|
end
|
|
|
|
|
2017-05-05 17:48:22 +00:00
|
|
|
def link_to_hashtag(entity)
|
|
|
|
hashtag_html(entity[:hashtag])
|
2016-11-04 18:12:59 +00:00
|
|
|
end
|
|
|
|
|
2017-01-23 13:45:09 +00:00
|
|
|
def link_html(url)
|
2017-09-14 16:03:20 +00:00
|
|
|
url = Addressable::URI.parse(url).to_s
|
2017-01-24 16:05:44 +00:00
|
|
|
prefix = url.match(/\Ahttps?:\/\/(www\.)?/).to_s
|
|
|
|
text = url[prefix.length, 30]
|
|
|
|
suffix = url[prefix.length + 30..-1]
|
2017-02-05 14:29:16 +00:00
|
|
|
cutoff = url[prefix.length..-1].length > 30
|
2017-01-24 16:05:44 +00:00
|
|
|
|
2017-09-16 19:33:52 +00:00
|
|
|
"<span class=\"invisible\">#{encode(prefix)}</span><span class=\"#{cutoff ? 'ellipsis' : ''}\">#{encode(text)}</span><span class=\"invisible\">#{encode(suffix)}</span>"
|
2017-01-23 13:45:09 +00:00
|
|
|
end
|
|
|
|
|
2017-05-05 17:48:22 +00:00
|
|
|
def hashtag_html(tag)
|
2018-10-11 22:15:55 +00:00
|
|
|
"<a href=\"#{encode(tag_url(tag.downcase))}\" class=\"mention hashtag\" rel=\"tag\">#<span>#{encode(tag)}</span></a>"
|
2016-11-04 18:12:59 +00:00
|
|
|
end
|
|
|
|
|
2017-05-05 17:48:22 +00:00
|
|
|
def mention_html(account)
|
2018-10-11 22:15:55 +00:00
|
|
|
"<span class=\"h-card\"><a href=\"#{encode(TagManager.instance.url_for(account))}\" class=\"u-url mention\">@<span>#{encode(account.username)}</span></a></span>"
|
2016-09-09 18:04:34 +00:00
|
|
|
end
|
|
|
|
end
|