Skip to content

Commit 7ce5833

Browse files
committed
2 parents 4c3b35b + d52fc17 commit 7ce5833

1 file changed

Lines changed: 8 additions & 7 deletions

File tree

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,21 +48,22 @@ In addition to layers, the package contains constraints for the UI configuration
4848

4949
## Document Preparation Workaround (Multi-line annotations in Inception)
5050

51-
A specific challenge of Inception-based coding is the expansion of multi-line annotations. Whenever the coder annotates a statement across line boundaries, the annotated text is expanded onto a single line, leading to extensive horizontal scrolling. This problem is specific to Inception and not related to the provided layers. A workaround to alleviate this is to preprocess documents with fixed line boundaries and adjust the editor settings accordingly.
51+
A specific challenge of Inception-based coding is the expansion of multi-line annotations. Whenever the coder annotates a statement across line boundaries, the annotated text is expanded onto a single line, requiring extensive horizontal scrolling in the coding process. This problem is specific to Inception and not related to the provided layers. A workaround to alleviate this is to preprocess documents with fixed line boundaries and adjust the editor settings accordingly.
5252

5353
The following workaround addresses this by introducing a forced line break after 100 characters (this can be adjusted by substituting the corresponding value in the 'Find what:' field described below). Note that this can lead to arbitrary word separation, which may require further post-processing.
5454

5555
Preparation:
5656
* Ensure the document is available in plain text format
57-
* Create a copy of the original document prior to the following steps
57+
* Create a backup copy of the original document prior to performing the following steps
5858

5959
Instructions for reformatting:
6060
* Open document in Notepad++
61-
* Press Ctrl-A to mark the complete document
62-
* Open Search dialog and switch to 'Replace' tab
63-
* In the 'Find what:' field, enter: \s(?<=.{100})
64-
* In the 'Replace with:' field, enter: \n
65-
* Click 'Replace All'
61+
* Press *Ctrl-A* to mark the complete text
62+
* Open the Search dialog (*Ctrl-F*) and switch to the 'Replace' tab
63+
* In the 'Search Mode' area at the bottom of the 'Replace' tab, select 'Regular Expression'
64+
* In the 'Find what:' field, enter: *\s(?<=.{100})*
65+
* In the 'Replace with:' field, enter: *\n*
66+
* Click 'Replace All' button
6667
* Save the reformatted document
6768

6869
Adjust annotation editor setting:

0 commit comments

Comments
 (0)