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 95b71d2 commit a4ed18bCopy full SHA for a4ed18b
README.md
@@ -148,6 +148,24 @@ Result:
148
a <ins>b </ins>c
149
```
150
151
+Example 2:
152
+
153
+```abap
154
+lv_original = 'a b c'.
155
156
+lv_modified = 'a c'.
157
158
+lv_diff = li_htmldiff->textdiff(
159
+ iv_before = lv_original
160
+ iv_after = lv_modified ).
161
+```
162
163
+Result:
164
165
+```text
166
+a <del>b </del>c
167
168
169
### Styling
170
171
Here's an examle for styling the insertions and deletions using CSS.
0 commit comments