Compare commits

...

2 Commits

1 changed files with 6 additions and 5 deletions

View File

@ -27,21 +27,22 @@ public class RawArticle : PageModel
{ {
if (!_blogService.TryGetBlogPost(year, month, day, slug, out BlogPost? post)) if (!_blogService.TryGetBlogPost(year, month, day, slug, out BlogPost? post))
{ {
Response.StatusCode = 404;
return NotFound(); return NotFound();
} }
Response.Headers.Add("Content-Type", "text/plain; charset=utf-8");
using Utf8ValueStringBuilder builder = ZString.CreateUtf8StringBuilder(); using Utf8ValueStringBuilder builder = ZString.CreateUtf8StringBuilder();
builder.AppendLine("# " + post.Title); builder.AppendLine("# " + post.Title);
if (_blogService.TryGetAuthor(post, out Author? author)) if (_blogService.TryGetAuthor(post, out Author? author))
builder.AppendLine($"Author: {author.Name}"); builder.AppendLine($"Author: {author.Name}");
builder.AppendLine($"Published: {post.Published:R}"); builder.AppendLine($"Published: {post.Published:R}");
if (post.Updated.HasValue) if (post.Updated.HasValue)
builder.AppendLine($"Updated: {post.Updated:R}"); builder.AppendLine($"Updated: {post.Updated:R}");
builder.AppendLine(); builder.AppendLine();
builder.AppendLine(post.Body); builder.AppendLine(post.Body);
return Content(builder.ToString(), "text/plain"); return Content(builder.ToString());
} }
} }