Forum Discussion
ChayceDuncan
2 years agoQrew Captain
There is not an actual export feature - the best you can do it try and scrape it and copy the contents into a CSV / Excel file. Just off the cusp if you're familiar with using your browser console you could try:
var csv = "";
$(".rulerule").each(function() { csv += $(this).text() + "\n" })
Then copy the context of csv into notepad or equivalent to save as a CSV and then open in Excel. Not perfect but gets the 'wording' of the rule into a digestable format you could manage.
------------------------------
Chayce Duncan
------------------------------