6 lines
169 B
Ruby
6 lines
169 B
Ruby
class DtextController < ApplicationController
|
|
def preview
|
|
render :inline => "<h1 class=\"preview-header\">Preview</h1><%= format_text(params[:body]) %>"
|
|
end
|
|
end
|