Often, reviewers would like to point to problematic larger parts of a document. In pdf documents, you usually refer to page or line numbers but this is no option in FW for obvious reasons.
A solution for these cases could be a numbering of paragraphs. Following this thread, I have tweaked the document template CSS and come up with the following solution:
.user-contents p {
counter-increment: paragraph;
}
.user-contents p::before {
position: absolute;
text-indent: 0px;
left: -45px;
padding-top: 2px;
font-size: 80%;
color: #888888;
content: counter(paragraph);
}
This works fairly well. Only in the case of tables, each cell is obviously counted once which leads to a mess of numbers. Any suggestions how to exclude tables from the counter would be appreciated.