when a new post is created, the page is now scrolled to is via its anchor created a show post route, and view. added a post number to post view, with link. need to change displayed post number from post id, to reply #
21 lines
503 B
Ruby
Executable File
21 lines
503 B
Ruby
Executable File
module ApplicationHelper
|
|
|
|
def cancel_link
|
|
return link_to 'Cancel', request.env["HTTP_REFERER"],
|
|
:confirm => 'Are you sure? Any changes will be lost.'
|
|
end
|
|
|
|
def block_quote
|
|
return {
|
|
'Quote' => [
|
|
/\[quote(:.*)?=(.*?)\](.*?)\[\/quote\1?\]/mi,
|
|
'<blockquote><cite>\2</cite><span class="a">“</span>\3<span class="b">”</span></blockquote>',
|
|
'Quote with citation',
|
|
'[quote=mike]please quote me[/quote]',
|
|
:quote
|
|
],
|
|
}
|
|
end
|
|
|
|
end
|