Hi, I might be being dumb here, but I can’t get this to work.
Want to serve a static markdown page for release notes, and have included the following in Global.asax.cs
Plugins.Add(new MarkdownFormat());
And have created a default.shtml (is this still the right way?)
And created a ReleaseNotesRequest.md - following the “same name as DTO convention”.
I have then created the following Service method
public object Get(ReleaseNotesRequest request)
{
var response = new HttpResult();
response.View = "ReleaseNotesRequest";
return response;
}
But the markdown is not being rendered, just the out of the box SS html. I must be doing something basic wrong, but am lost. Any ideas?
G