TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Show HN: Super simple rough notes in 37lines of HTML

1 pointsby JLCarvethover 1 year ago

1 comment

JLCarvethover 1 year ago
An even simpler implementation is possible if you don&#x27;t want tab support, bold&#x2F;italics:<p><pre><code> &lt;html contenteditable=&quot;true&quot; autofocus&gt;&lt;&#x2F;html&gt; &lt;script&gt; const a = localStorage.getItem(&quot;saved-content&quot;); document.querySelector(&quot;body&quot;).innerHTML = a; setInterval(() =&gt; { localStorage.setItem(&quot;saved-content&quot;, document.querySelector(&quot;body&quot;).innerHTML); }, 2000); &lt;&#x2F;script&gt;</code></pre>