Ihor Radchenko writes:
> ...
> So, there is no bug here.
After discussing off-list, I have clarified several docstrings.
Handled, on main.
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=d72feeb09
https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=b45b39326
--
Ihor
Jeff Trull writes:
>> During export, table may be not the same as it appears in the original
>> document - some rows may be omitted. `org-export-table-row-number'
>> returns the coordinates in as-exported table, not in the original table.
>>
>
> Agreed. I believe this behavior contradicts its doc
Jeff Trull writes:
> Consider this table:
>
> ...
> org-export-table-row-number correctly returns 3 for the cell containing '4'
> (and the target of the formula)
>
> Now add a column alignment row:
>
> ...
> | ||
> ...
> org-export-table-row-number still returns 3 for the same cell,
Consider this table:
| Shape| Sides |
|--+---|
| Triangle | 3 |
| Pentagon | 5 |
|--+---|
| Average | 4 |
#+TBLFM: @4$2=vmean(@2..@3)
org-export-table-row-number correctly returns 3 for the cell containing '4'
(and the target of the formula)
Now add a col