Mobile app version of vmapp.org
Login or Join
Mendez628

: What's the best way to serve simple flowcharts The websites in the government sector often provide Word files containing flowcharts. They are simple flowcharts with at most ten nodes in size,

@Mendez628

Posted in: #Content #Graphics #Images #SearchEngines #Svg

The websites in the government sector often provide Word files containing flowcharts. They are simple flowcharts with at most ten nodes in size, showing common workflows to people. There are several problem with this: downloading a separate file and opening it in a separate application is a pain. File is in proprietary format and is big. Lastly it is not friendly to search engines.

I thought of using image files instead, however this will be difficult to modify later on (for them at least), plus it is not index-able.

Are there other approaches to this? I have thought of PDF but still does not like how chunky it is. I have also thought of SVG but I do not know it well enough to say anything constructive.

An example would be this Word document

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Mendez628

2 Comments

Sorted by latest first Latest Oldest Best

 

@Sarah324

After a few days of searching I have the following potential answers:


Use Google Doc's Drawing and embed using iframe. It's very accessible, easy to use and works. However it does not work in IE8, so one has to use its published PNG which is not indexable.
Use SVG, but use svg2vml to dynamically convert it to VML, which should be viewable in IE.
Use normal image but to put meta data in the tag, which is a hassle.

10% popularity Vote Up Vote Down


 

@Candy875

SVG would be a good approach for the future. However you'll need to find a tool to create SVG code because it's going to be fiddly to do it by hand. Also, it doesn't work on all browsers caniuse.com/#search=svg, particularly IE8 and earlier.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme