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