6 lines
151 B
Ruby
6 lines
151 B
Ruby
class DtextPreviewsController < ApplicationController
|
|
def create
|
|
render :inline => "<%= format_text(params[:body], :ragel => true) %>"
|
|
end
|
|
end
|