You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-7Lines changed: 8 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,21 +48,22 @@ In addition to layers, the package contains constraints for the UI configuration
48
48
49
49
## Document Preparation Workaround (Multi-line annotations in Inception)
50
50
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.
52
52
53
53
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.
54
54
55
55
Preparation:
56
56
* 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
58
58
59
59
Instructions for reformatting:
60
60
* 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})*
0 commit comments