Visdown – Visualization using Markdown
visdown.amitkaps.com
Visdown – Visualization using Markdown
1–10 of 16 posts
Re: Visdown – Visualization using Markdown
#2I think visualizations are best left to separate projects that specialize in them - which in turn generate images that can be placed in a Markdown document.
Of course, if anyone finds this useful (obviously the author does) I would never discourage it. I'm simply trying to reconcile this with what I personally believe the main purpose of Markdown to be.
Re: Visdown – Visualization using Markdown
#3To be in the spirit of markdown, you would have to do something like take a csv or table of numbers, and make them into a chart -in a way that you can read in plaintext too.
Re: Visdown – Visualization using Markdown
#4Interesting, but in a weird way it kind of works against the whole point of Markdown - markup that emphasizes text-only readability. I think visualizations are best left to separate projects that specialize in them - which in turn generate images that can be placed in a Markdown document. Of course, if anyone finds this useful (obviously the author does) I would never discourage it. I'm simply trying to reconcile thi…
I'm not sure what the benefit of doing it this way is supposed to be.
Re: Visdown – Visualization using Markdown
#5Re: Visdown – Visualization using Markdown
#6Re: Visdown – Visualization using Markdown
#7This standardization can then result in much improved support for Markdown editors. Think autocomplete for any extended item which works on any Markdown editor.
Re: Visdown – Visualization using Markdown
#8Interesting, but in a weird way it kind of works against the whole point of Markdown - markup that emphasizes text-only readability. I think visualizations are best left to separate projects that specialize in them - which in turn generate images that can be placed in a Markdown document. Of course, if anyone finds this useful (obviously the author does) I would never discourage it. I'm simply trying to reconcile thi…
There's already a syntax to inline images: https://daringfireball.net/projects/markdown/syntax#img I'm not sure what the benefit of doing it this way is supposed to be.
An inline image, as unnatural as it might appear in a markdown doc (as the DF post notes) is more "readable" in plain-text than what is essentially a block of YAML for configuring a chart in the middle of a document.
Re: Visdown – Visualization using Markdown
#9I like the idea of adding visualizations to markdown. I think its got potential. But this implementation is entirely wrong. I could never include it server side or client side because the data source is decoupled. Additionally, the setup reads 10X more like something i'd write for javascript than for markdown. To be in the spirit of markdown, you would have to do something like take a csv or table of numbers, and mak…
Plain-text readability is paramount. But additionally, we need to be careful as to how visualizations are implemented. The visual characteristics of the final HTML document are really supposed to exist in the domain of the stylesheet applied to it.
The visualization configuration block in OP's example is perilously close, if not guilty, of violating the traditional separation of concerns we expect with Markdown.
Re: Visdown – Visualization using Markdown
#10(but I really the idea of using it with Markdown!)