mirror of
https://github.com/httpjamesm/AnonymousOverflow.git
synced 2025-04-24 15:56:09 +00:00
fix: keep HTML escaped
This commit is contained in:
parent
0d7355bd46
commit
1d69997dd0
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ func extractAnswersData(doc *goquery.Document, domain string) ([]types.FilteredA
|
|||
|
||||
// Process code blocks within the answer.
|
||||
processedAnswerBody := utils.ProcessHTMLBody(answerBodyHTML)
|
||||
answer.Body = template.HTML(html.UnescapeString(processedAnswerBody))
|
||||
answer.Body = template.HTML(processedAnswerBody)
|
||||
|
||||
// Extract author information and timestamp.
|
||||
extractAnswerAuthorInfo(s, &answer, domain)
|
||||
|
|
Loading…
Add table
Reference in a new issue