mdtable2csv
A very simple markdown table to CSV converter with no dependencies
mdtable2csv/tests/.dir-locals.el
Download raw file: tests/.dir-locals.el
;;; RFC 4180 CSV files use DOS line endings so automatically switch to ;;; a DOS encoding on .csv files. Also require a newline at the end ;;; of the file to avoid spurious test failures. ((fundamental-mode . ((eval . (when (and (buffer-file-name) (string-match "\\.csv$" (buffer-file-name))) (set-buffer-file-coding-system 'utf-8-dos))) (require-final-newline . t))))