Metadata-Version: 2.4
Name: tdp-markdownrender
Version: 0.0.1
Summary: A simple markdown to html and webrenderTOP utility.
Author-email: Wieland Hilker <Wieland@PlusPlus.One>
Keywords: TouchDesigner,TouchDesignerPackage
Requires-Python: >=3.11.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mistune==3
Dynamic: license-file

# TouchDesigner Markdown Render
Implements mistune to render MD text in to HTML to display via WebRenderTOP.

Input 1 is the TextDAT containing the markdown. 

Input 2 contains the CSS-Styling which can be overwritten. Default is 
```css
body {
  background: #fff;
  color: #333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

h1, h2, h3 {
  color: #222;
}

a {
  color: #0066cc;
}

pre, code {
  background: #f5f5f5;
  padding: 2px 4px;
  border-radius: 3px;
}

pre {
  padding: 10px;
  overflow-x: auto;
}

blockquote {
  border-left: 3px solid #0066cc;
  padding-left: 10px;
  color: #555;
  font-style: italic;
```
an can/should be adjusted to your liking.
