Hello,
Could anyone point me to the right direction to write a plugin that will convert CSS classes from Bootstrap to tachyons? For example:
FROM
<-- bootstrap -->
<div class="row">
<div class="col-xs-12 col-md-3">100/25</div>
<div class="col-xs-12 col-md-6">100/50</div>
<div class="col-xs-12 col-md-3">100/25</div>
</div>
TO
<-- tachyons -->
<div class="cf-ns nl2 nr2">
<div class="fl-ns w-25-ns ph2">100/25</div>
<div class="fl-ns w-50-ns ph2">100/50</div>
<div class="fl-ns w-25-ns ph2">100/25</div>
</div>
The plugin needs to read the classes and replace them respectively.
However, I’m not a developer, so I need a little push here.
Thank you,
Castle