Create a pandoc compatible table
In [this vimcast][1], a featured gist from Tim Pope shows how to quickly make a simple table structure. How fast can you convert it to pandoc's markdown style? [1]: http://vimcasts.org/episodes/aligning-text-with-tabular-vim/
Start file
| This | Is | A Table | Example | | I'm | going | to | fill | | it | with | random | information | | just | to | save | me | | time. | In | the | spirit | | of | vim | I | am | | quite | often | extremely | lazy. |
End file
This Is A Table Example ----- ----- --------- ----------- I'm going to fill it with random information just to save me time. In the spirit of vim I am quite often extremely lazy.
View Diff
1,7c1,8 < | This | Is | A Table | Example | < | I'm | going | to | fill | < | it | with | random | information | < | just | to | save | me | < | time. | In | the | spirit | < | of | vim | I | am | < | quite | often | extremely | lazy. | --- > This Is A Table Example > ----- ----- --------- ----------- > I'm going to fill > it with random information > just to save me > time. In the spirit > of vim I am > quite often extremely lazy.
Solutions by @h_east:
Unlock 1 remaining solutions by signing in and submitting your own entry