<!DOCTYPE html><html><head><link href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/github-dark.min.css" rel="stylesheet"><script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min.js"></script><link href="global.css" rel="stylesheet"><script>hljs.highlightAll();</script></head><body><h1 class="title">Neopolitan wish-features</h1><div class = "note"><p>This page is specifically made for Alan to show features, which I would like to see in Neopolitan.<br>Everything you see here is implemented in my engine.</p></div class = "note"><p class="subtitle">Markdown tripple backqoute for code</p><pre><code class="language-markdown">```
Some code
```
```Rust
fn main() {
println!("Hello, World!");
}
```</code></pre><h3>Live example:</h3><section><pre><code>Some code</code></pre><pre><code class="language-Rust">fn main() {
println!("Hello, World!");
}</code></pre></section><p>Question: should <code >```</code> without explicit language be txt or autodetect?</p><p class="subtitle">Markdown title and subtitle</p><p>I want this because it's one line title</p><pre><code class="language-markdown"># Title
## Subtitle
Text</code></pre><h3>Live example:</h3><section><h1>Title</h1><h2>Subtitle</h2><p>Text</p></section><p class="subtitle">Escapes (like in markdown)</p><pre><code class="language-txt">* Some bold text with a \*star\*\* **
Code \` should be escapeable \` too \`
I thought about this when I was writing x86\_64 in\_my\_ >"blog post">https://infinitecoder01.github.io/InfiniteCoder01/blog/writing-a-compiler-backend/>
By the way, \>links\>too\>
And, finally, \~Cross text\~and\~ the backslash (\\) itself</code></pre><h3>Live example:</h3><section><p><strong > Some bold text with a *star** </strong><br>Code ` should be escapeable ` too `<br>I thought about this when I was writing x86_64 in_my_ <a href = "https://infinitecoder01.github.io/InfiniteCoder01/blog/writing-a-compiler-backend/">"blog post"</a><br>By the way, >links>too><br>And, finally, ~Cross text~and~ the backslash (\) itself</p></section><p>Some breaking examples: >eq <eq _23</p><p class="subtitle">Inline tags & attributes</p><pre><code class="language-markdown">Bare URL, like in mdBook: <https://alanwsmith.com/neopolitan>
Inline images are cool: <<img|https://www.alanwsmith.com/favicon.ico>></code></pre><h3>Live example:</h3><section><p>Bare URL, like in mdBook: <a href = "https://alanwsmith.com/neopolitan">https://alanwsmith.com/neopolitan</a><br>Inline images are cool: <img src="https://www.alanwsmith.com/favicon.ico" /></p></section><h1 class="title">Stuff that got rejected, but is still supported by my engine</h1><p>Nothing here yet. :)</p></body></html>