Sample code for 30+ languages & platforms
Classic ASP

Markdown to HTML - Full Document, Raw

See more Markdown Examples

Demonstrates how to convert a complete Markdown document to HTML using the raw theme. With the raw theme, only the HTML elements are generated, excluding:

  • Document Type Declaration (e.g. <!DOCTYPE html>)
  • Root Element (e.g., <html> )
  • Head Section
  • Enclosing <body> and </body> elements
  • Closing </html> element

Chilkat Classic ASP Downloads

Classic ASP
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
success = 0

set options = Server.CreateObject("Chilkat.JsonObject")
success = options.UpdateString("theme","raw")

set sbMarkdown = Server.CreateObject("Chilkat.StringBuilder")
set sbHtml = Server.CreateObject("Chilkat.StringBuilder")

success = sbMarkdown.LoadFile("qa_data/markdown/test1.md","utf-8")
If (success = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( sbMarkdown.LastErrorText) & "</pre>"
    Response.End
End If

success = sbMarkdown.MarkdownToHtml(options,sbHtml)
success = sbHtml.ToCRLF()

Response.Write "<pre>" & Server.HTMLEncode( sbHtml.GetAsString()) & "</pre>"

' Sample markdown input:
' (See sample HTML output below.)

' image

' Sample HTML output:

' image

%>
</body>
</html>