First apologies if this is a stupid question I can imagine there is an easy way to do this but would like to ask anyhow.
I have setup a js framework that I am trying to integrate into a WordPress plugin. Currently if works like this.
example("div").media({
plugins: {
modal : true
},
options : {
opts: 1
}
});
I am not sure how to set this up with shortcode without having hundreds of params.
[example div="div" plugins="???" options="???"]
Can’t find anything here https://codex.wordpress.org/Shortcode_API
Thanks