This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / appview / state / markup.go
181 B 8 lines
1package state 2 3import "net/http" 4 5func (s *State) MarkdownPreview(w http.ResponseWriter, r *http.Request) { 6 body := r.FormValue("body") 7 s.pages.MarkdownPreviewFragment(w, body) 8}