<%- include("../../../src/web/views/partials/layout-top", { title }) %>
Knowledge

<%= entry.title %>

<%= entry.category || "General" %> ยท Updated <%= new Date(entry.updated_at).toLocaleString() %>

Back to OKF
<% if (entry.summary) { %>

<%= entry.summary %>

<% } %> <% if (entry.tags && entry.tags.length) { %>

<% entry.tags.forEach((tag) => { %> <%= tag %> <% }) %>

<% } %> <% if (entry.aliases && entry.aliases.length) { %>
Related questions
<% } %>

Answer

<%- renderMarkdown(entry.user_markdown) %>
<% if (entry.moderator_markdown) { %>

Moderator support details

<%- renderMarkdown(entry.moderator_markdown) %>
<% } %> <% if (entry.admin_markdown || entry.ai_facts_markdown || (entry.source_links && entry.source_links.length)) { %>

Admin/internal details

<% if (entry.admin_markdown) { %>
<%- renderMarkdown(entry.admin_markdown) %>
<% } %> <% if (entry.ai_facts_markdown) { %>

AI facts

<%- renderMarkdown(entry.ai_facts_markdown) %>
<% } %> <% if (entry.source_links && entry.source_links.length) { %>

Sources

<% } %>
<% } %> <%- include("../../../src/web/views/partials/layout-bottom") %>