I’m using $.Inner to access the .Inner in the global context. This access seems to be working properly.
My problem is that $.Inner equals to <a href="{{ .url }}" target="_blank" class="btn btn-lg btn-primary btn-icon btn-round"> <i class="fa {{ .icon }}"></i></a>.
I would like to “render” it as a regular template, so it would use the local variables of the range and compile to something like <a href="https://twitter.com/blabla/" target="_blank" class="btn btn-lg btn-primary btn-icon btn-round"> <i class="fa fa-twitter"></i></a>.
I’ve tried many different things, but nothing has worked so far.
If you somehow want {{ .url }} to mean something, that needs to be in the shortcode template (note that we also have something called inline shortcodes, which is also very cool).