Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to have tabpanel in Markdown?

I'd like to know if there is a way to have tabs (tabpanels) on Github in Markdown in the README.md.

My goal is to have something like this:

enter image description here

like image 933
elect Avatar asked Jan 12 '17 10:01

elect


People also ask

How do you put a tab space in markdown?

Type nbsp to add a single space. Type ensp to add 2 spaces. Type emsp to add 4 spaces. You can use non-breaking space ( nbsp ) 4 times to insert a tab.

Can I create tabs in markdown?

To implement the tabbed section in an Rmarkdown document like the example above, all you have to do is putting {. tabset} on the right of a header. Then all the content below each sub-header will appear within a tab. Besides, this feature is only avaliable when rendering an Rmarkdown file to an html file.

How do I add a tab to a readme in github?

You can use non-breaking space (   ) 4 times to insert a tab.


1 Answers

yes is possible using shinytabs in rmarkdown

see this page

http://scottshepard.io/markdown-pages-as-tabs-in-shiny/

rmarkdown is the most advance version of markdown that i saw

in github flavored markdown its impossible Except that you make a fork using jquery or bootstrap

I do not think it's possible in gfm I've seen it for markdown forks and only R It has those features

you can use ajax maybe

https://rstudio.github.io/shinydashboard/structure.html

you should see this post Is it possible to host interactive R Markdown files on Github Pages?

also

like image 137
user7412219 Avatar answered Nov 16 '22 03:11

user7412219