mirror of
https://github.com/discourse/discourse.git
synced 2025-01-18 18:02:46 +08:00
Allow oneboxers to specify their simple_onebox text is unsafe
This commit is contained in:
parent
6d06420583
commit
1a0b23fd2b
|
@ -20,6 +20,7 @@ module Oneboxer
|
||||||
|
|
||||||
@opts[:original_url] = @url
|
@opts[:original_url] = @url
|
||||||
@opts[:text] = @opts['description']
|
@opts[:text] = @opts['description']
|
||||||
|
@opts[:unsafe] = true
|
||||||
|
|
||||||
begin
|
begin
|
||||||
parsed = URI.parse(@url)
|
parsed = URI.parse(@url)
|
||||||
|
|
|
@ -12,7 +12,12 @@
|
||||||
{{#image}}<img src="{{image}}" class="thumbnail">{{/image}}
|
{{#image}}<img src="{{image}}" class="thumbnail">{{/image}}
|
||||||
<h3><a href="{{original_url}}" target="_blank">{{title}}</a></h3>
|
<h3><a href="{{original_url}}" target="_blank">{{title}}</a></h3>
|
||||||
{{#by_info}}<h4>{{by_info}}</h4>{{/by_info}}
|
{{#by_info}}<h4>{{by_info}}</h4>{{/by_info}}
|
||||||
{{{text}}}
|
{{#unsafe}}
|
||||||
|
{{text}}
|
||||||
|
{{/unsafe}}
|
||||||
|
{{^unsafe}}
|
||||||
|
{{{text}}}
|
||||||
|
{{/unsafe}}
|
||||||
</div>
|
</div>
|
||||||
<div class='clearfix'></div>
|
<div class='clearfix'></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user