Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 454 Bytes

File metadata and controls

19 lines (14 loc) · 454 Bytes

Hello from the C Server!

This Markdown content was served by a basic C HTTP server. It is being rendered in your browser using the marked.js library.

Features Demonstrated:

  • Serving static index.html.
  • Serving static content.md.
  • Client-side rendering using JavaScript (fetch and marked.js).
// Example code block within Markdown
#include <stdio.h>

int main() {
    printf("Rendered by marked.js!\\n");
    return 0;
}