Self-Contained
Markdeep works independently by simply loading files in a web browser. It doesn't require any external tools or server-side processing.
Enhanced Markdown
Markdeep extends normal Markdown with support for diagrams, charts, and even mathematical notation, enhancing the document's expressiveness.
Easy to Use
You only need to include a script tag in your document to use Markdeep, making it straightforward for users to set up and maintain.
Cross-Platform Compatibility
Being entirely browser-based, Markdeep is compatible across various platforms, allowing users to view documents on any device with a modern web browser.
Free and Open Source
Markdeep is free to use and open source, providing transparency and encouraging contributions from the community.
We have collected here some useful links to help you find out if Markdeep is good.
Check the traffic stats of Markdeep on SimilarWeb. The key metrics to look for are: monthly visits, average visit duration, pages per visit, and traffic by country. Moreoever, check the traffic sources. For example "Direct" traffic is a good sign.
Check the "Domain Rating" of Markdeep on Ahrefs. The domain rating is a measure of the strength of a website's backlink profile on a scale from 0 to 100. It shows the strength of Markdeep's backlink profile compared to the other websites. In most cases a domain rating of 60+ is considered good and 70+ is considered very good.
Check the "Domain Authority" of Markdeep on MOZ. A website's domain authority (DA) is a search engine ranking score that predicts how well a website will rank on search engine result pages (SERPs). It is based on a 100-point logarithmic scale, with higher scores corresponding to a greater likelihood of ranking. This is another useful metric to check if a website is good.
The latest comments about Markdeep on Reddit. This can help you find out how popualr the product is and what people think about it.
Markdeep[1] also supports drawing diagrams from ASCII arts. It's pretty good. [1] https://casual-effects.com/markdeep/. - Source: Hacker News / 6 months ago
There's also Markdeep https://casual-effects.com/markdeep/. - Source: Hacker News / 7 months ago
I've taken to using Markdeep [1] for this. You write your markdown file, but add the code snippet at the bottom of yor document and save it with a .md.html extension. Then when you double-click it it opens and renders in your browser. I save my notes in a Google Drive, and it's now replaced all the note taking apps I've tried over the years [1] https://casual-effects.com/markdeep/. - Source: Hacker News / 8 months ago
BTW: If you want "Turn Markdown into HTML at runtime" there's https://casual-effects.com/markdeep/. - Source: Hacker News / 12 months ago
I host the Markdeep library locally as well. Though overtime I've added some features, e.g. To make anchoring linking easier. [1] https://casual-effects.com/markdeep/. - Source: Hacker News / over 1 year ago
I cheat with my site. I write the site in markdown in an html file. I then include the link for Markdeep (https://casual-effects.com/markdeep/) Page goes to user, markdeep does all the processing and I'm good to go. The minifed java script file is about 300kb, the size of an image. - Source: Hacker News / over 1 year ago
Lots of folks mentioning Markdown in the comments. +1 to that. Plain text FTW. Ever since WordPerfect I've preferred more deterministic, lightly-formatted documents with some way to see formatting characters directly. Markdown is brilliant, basically a DSL (domain-specific language) for HTML. The key to plain text is tooling! A couple Markdown tools I haven't seen mentioned here yet (even though they've come up on... - Source: Hacker News / almost 2 years ago
I've been working on a personal project for what I call "semiliterate programming" ;) because I think "Write a book about your code that happens to contain all of your code" is a bridge too far for nearly everyone. So, I'm trying to find the place between Doxygen and full-blown literate programming. Encouraging disjoint prose documentation rather than parameter-by-parameter docs or chapter-by-chapter docs. Doxygen... - Source: Hacker News / about 2 years ago
I like markdeep for documents, web stuff, etc. it has a rich set of mark methods. https://casual-effects.com/markdeep/. - Source: Hacker News / about 2 years ago
It could be that I'm just one of the 10,000 some days (https://xkcd.com/1053/) but there has been a few times that I've seen an article on HN and went "Umm, I didn't know I needed that, but it fits into a niche use that I have." My last one was Markdeep in a discussion about markup languages. https://casual-effects.com/markdeep/ Or Picotron (https://news.ycombinator.com/item?id=39786984)... - Source: Hacker News / over 2 years ago
I didn't see anyone mention Markdeep [0] yet. I started with a notes.txt file for the system I maintain. I found myself gradually adopting Markdown syntax because I need bulleted lists and headings to separate different sections. I also needed hyperlinks to documentation or StackOverflow answers. So one day I just added the Markdeep tags to the bottom of the file and renamed it to notes.md.html I still keep it... - Source: Hacker News / over 2 years ago
Don't discount #2 there. I still make and use ASCII art when commenting source code. Flow charts! ASCII art diagrams can be automatically rendered to an image, too: https://casual-effects.com/markdeep/. - Source: Hacker News / over 2 years ago
I started using MarkDown tools that support MathJax. As my preferred environment is as simple as possible I'm using Markdeep (https://casual-effects.com/markdeep/) and hammer and chisel (aka vi). Working well for me. Source: almost 3 years ago
I never tried using vim wiki because I was already using markdeep for a similar purpose. I could write markdown from the comfort of vim, then get rendering in a browser basically for free. I have toyed with the idea of creating a custom version of the vim wiki plugin which creates .md.html pages with the markdeep script code in the appropriate place. Thus allowing for the best of both worlds: fast editing in vim... Source: about 3 years ago
Since everyone's sharing their implementation of "slides, but written in Markdown", here's mine: https://github.com/doersino/markdeep-slides), it's just an HTML file (and a bit of JS/CSS). - Source: Hacker News / over 3 years ago
> The only disadvantage is for drawings. I don't currently have a good way to capture those. How about Markdeep? https://casual-effects.com/markdeep. - Source: Hacker News / over 3 years ago
Mandatory mention to Markdeep: https://casual-effects.com/markdeep/. - Source: Hacker News / almost 4 years ago
Yup, it's GitHub pages. It's just a private repo, so the world doesn't get to see my embarrassing edits and half written drafts. I would be happy to share a snapshot of the source code with you if you have a specific use for it though -- email me. I'm using the minima Jekyll theme. I also used Markdeep (https://casual-effects.com/markdeep/) rather than vanilla markdown to write the post. (Markdeep is awesome. It... - Source: Hacker News / almost 4 years ago
So, https://casual-effects.com/markdeep/ ? - Source: Hacker News / almost 4 years ago
Part of the benefit of Markdown is that you can view the raw source and still get useful info out of it. But this site prerendered the Markdown and served HTML which defeats part of the purpose. A better option would be to use something like https://casual-effects.com/markdeep/ and serve the MD/HTML file. Then you can get a client-rendered HTML (https://casual-effects.com/markdeep/features.md.html) or view the raw... - Source: Hacker News / almost 4 years ago
Support for Markdeep would be super awesome! Source: almost 4 years ago
Do you know an article comparing Markdeep to other products?
Suggest a link to a post with product alternatives.
Is Markdeep good? This is an informative page that will help you find out. Moreover, you can review and discuss Markdeep here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.