We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b384b6 commit 87cc95cCopy full SHA for 87cc95c
format-table.el
@@ -151,7 +151,9 @@ separators should look like."
151
:row-count (length body))))
152
153
(defun format-table-parse-table (lines col-widths input-mode)
154
- "Parse the list of table LINES into a plist."
+ "Parse the list of table LINES into a plist.
155
+COL-WIDTHS is the list of column widths for each column, and INPUT-MODE is the
156
+input mode of the source string."
157
(let* ((header (format-table-split-row (car lines) col-widths input-mode))
158
(body (--map (format-table-split-row it col-widths input-mode) (-slice lines 2))))
159
(format-table-assemble-table header body)))
0 commit comments