Skip to content

Commit 9ffe6cb

Browse files
Merge pull request #1800 from syncfusion-content/867572
867572 : Resolved Liquid syntax error .
2 parents 03ea9ca + 10eabb2 commit 9ffe6cb

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

File-Formats/PDF/Split-Documents.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ The Syncfusion PDF library enables the splitting of PDF documents and offers the
301301
{% tabs %}
302302

303303
{% highlight c# tabtitle="C# [Cross-platform]" %}
304-
304+
{% raw %}
305305
//Load the existing PDF file.
306306
PdfLoadedDocument loadDocument = new PdfLoadedDocument(new FileStream("Input.pdf", FileMode.Open));
307307
//Subscribe to the document split event.
@@ -321,11 +321,11 @@ splitOptions.RemoveUnusedResources = true;
321321
loadDocument.SplitByRanges(new int[,] { { 0, 5 }, { 5, 10 } }, splitOptions);
322322
//Close the document.
323323
loadDocument.Close(true);
324-
324+
{% endraw %}
325325
{% endhighlight %}
326326

327327
{% highlight c# tabtitle="C# [Windows-specific]" %}
328-
328+
{% raw %}
329329
//Create the values.
330330
int[,] values = new int[,] { { 2, 5 }, { 8, 10 } };
331331
//Load the PDF document.
@@ -340,11 +340,11 @@ splitOptions.RemoveUnusedResources = true;
340340
loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions);
341341
//Close the document.
342342
loadedDocument.Close(true);
343-
343+
{% endraw %}
344344
{% endhighlight %}
345345

346346
{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
347-
347+
{% raw %}
348348
'Create the values.
349349
Dim values As Integer(,) = New Integer(,) {{2, 5},{8, 10}}
350350
'Load the PDF document.
@@ -360,7 +360,7 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions)
360360

361361
'Close the document.
362362
loadedDocument.Close(True)
363-
363+
{% endraw %}
364364
{% endhighlight %}
365365

366366
{% endtabs %}
@@ -375,7 +375,7 @@ The Syncfusion PDF library enables the splitting of PDF documents and offers the
375375
{% tabs %}
376376

377377
{% highlight c# tabtitle="C# [Cross-platform]" %}
378-
378+
{% raw %}
379379
//Load an existing PDF file.
380380
PdfLoadedDocument loadDocument = new PdfLoadedDocument(new FileStream("Input.pdf", FileMode.Open));
381381
//Subscribe to the document split event.
@@ -396,11 +396,11 @@ loadDocument.SplitByRanges(new int[,] { { 0, 1 }, { 1, 2 } }, splitOptions);
396396

397397
//Close the document.
398398
loadDocument.Close(true);
399-
399+
{% endraw %}
400400
{% endhighlight %}
401401

402402
{% highlight c# tabtitle="C# [Windows-specific]" %}
403-
403+
{% raw %}
404404
//Create the values.
405405
int[,] values = new int[,] { { 0, 1 }, { 1, 2 } };
406406
//Load the PDF document.
@@ -416,11 +416,11 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions);
416416

417417
//Close the document.
418418
loadedDocument.Close(true);
419-
419+
{% endraw %}
420420
{% endhighlight %}
421421

422422
{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
423-
423+
{% raw %}
424424
'Create the values.
425425
Dim values As Integer(,) = New Integer(,) {{0, 1},{1, 2}}
426426
'Load the PDF document.
@@ -436,7 +436,7 @@ loadedDocument.SplitByRanges(destinationFilePattern, values, splitOptions)
436436

437437
'Close the document.
438438
loadedDocument.Close(True)
439-
439+
{% endraw %}
440440
{% endhighlight %}
441441

442442
{% endtabs %}

0 commit comments

Comments
 (0)