@@ -6,31 +6,31 @@ Introduction to basic features and processing rules.
66
77Replacing a single tag in the document.
88
9- [ template] ( SimpleDocument/template/MyDocument.docx?raw=true ) - [ result] ( SimpleDocument/result.docx?raw=true )
9+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ SimpleDocument/template/MyDocument.docx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ SimpleDocument/result.docx)
1010
1111### [ Simple spreadsheet] ( SimpleSpreadsheet/Readme.md )
1212
1313Replacing tags in the spreadsheet.
1414
15- [ template] ( SimpleSpreadsheet/template/MySpreadsheet.xlsx?raw=true ) - [ result] ( SimpleSpreadsheet/result.xlsx?raw=true )
15+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ SimpleSpreadsheet/template/MySpreadsheet.xlsx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ SimpleSpreadsheet/result.xlsx)
1616
1717### [ Simple presentation] ( SimplePresentation/Readme.md )
1818
1919Replacing tags in the presentation.
2020
21- [ template] ( SimplePresentation/template/Presentation.pptx?raw=true ) - [ result] ( SimplePresentation/result.pptx?raw=true )
21+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ SimplePresentation/template/Presentation.pptx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ SimplePresentation/result.pptx)
2222
2323### [ Inserting images] ( ImageExample/Readme.md )
2424
2525How to insert an image into a document.
2626
27- [ template] ( ImageExample/template/Picture.docx?raw=true ) - [ result] ( ImageExample/result.docx?raw=true )
27+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ ImageExample/template/Picture.docx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ ImageExample/result.docx)
2828
2929### [ Android] ( AndroidExample/Readme.md )
3030
3131Templater also works in Android.
3232
33- [ template] ( AndroidExample/app/src/main/res/raw/template.docx?raw=true ) - [ result] ( AndroidExample/output.docx?raw=true )
33+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ AndroidExample/app/src/main/res/raw/template.docx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ AndroidExample/output.docx)
3434
3535### [ License embedding] ( WebExample%20(.NET)/Readme.md )
3636
@@ -42,100 +42,100 @@ How to embed license file (templater.lic) into a web project.
4242
4343Templater supports classes via reflection and more dynamic types such as maps.
4444
45- [ template] ( MapExample%20(Java)/src/main/resources/MyMap.docx?raw=true ) - [ result] ( MapExample%20(Java)/result.docx?raw=true )
45+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ MapExample%20(Java)/src/main/resources/MyMap.docx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ MapExample%20(Java)/result.docx)
4646
4747### [ Scala specifics] ( BeerList%20(Scala)/Readme.md )
4848
4949Templater is written in Scala and supports some Scala specific collections/types.
5050
51- [ template] ( BeerList%20(Scala)/src/main/resources/BeerList.docx?raw=true ) - [ result] ( BeerList%20(Scala)/result.docx?raw=true )
51+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ BeerList%20(Scala)/src/main/resources/BeerList.docx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ BeerList%20(Scala)/result.docx)
5252
5353### [ Collections] ( ListExample/Readme.md )
5454
5555While simple scenario such as repeating of a table rows is supported, arbitrary nesting is also supported - nesting collection inside a collection inside a collection...
5656
57- [ template] ( ListExample/template/MyList.docx?raw=true ) - [ result] ( ListExample/result.docx?raw=true )
57+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ ListExample/template/MyList.docx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ ListExample/result.docx)
5858
5959### [ Labels] ( Labels/Readme.md )
6060
6161Word features, such as columns, can be leveraged for layout. Barcodes from embedded fonts.
6262
63- [ template] ( Labels/template/label.docx?raw=true ) - [ result] ( Labels/result.docx?raw=true )
63+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ Labels/template/label.docx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ Labels/result.docx)
6464
6565### [ Paragraphs] ( Paragraphs/Readme.md )
6666
6767Resizing of paragraphs can be easily simulated via lists and tables.
6868
69- [ template] ( Paragraphs/template/Paragraphs.docx?raw=true ) - [ result] ( Paragraphs/result.docx?raw=true )
69+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ Paragraphs/template/Paragraphs.docx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ Paragraphs/result.docx)
7070
7171### [ CSV] ( CsvExample/Readme.md )
7272
7373CSV output can be used when appropriate.
7474
75- [ template] ( CsvExample/template/export.csv?raw=true ) - [ result] ( CsvExample/result.csv?raw=true )
75+ [ template] ( CsvExample/template/export.csv ) - [ result] ( CsvExample/result.csv )
7676
7777### [ Named range] ( NamedRange/Readme.md )
7878
7979In Excel, region fine tuning can be done via named ranges.
8080
81- [ template] ( NamedRange/template/Scorecard.xlsx?raw=true ) - [ result] ( NamedRange/result.xlsx?raw=true )
81+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ NamedRange/template/Scorecard.xlsx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ NamedRange/result.xlsx)
8282
8383### [ Context detection] ( SpreadsheetGrouping/Readme.md )
8484
8585Context analysis will work across nested collections.
8686
87- [ template] ( SpreadsheetGrouping/template/Grouping.xlsx?raw=true ) - [ result] ( SpreadsheetGrouping/result.xlsx?raw=true )
87+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ SpreadsheetGrouping/template/Grouping.xlsx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ SpreadsheetGrouping/result.xlsx)
8888
8989### [ Excel links] ( ExcelLinks/Readme.md )
9090
9191Various Excel features are supported.
9292
93- [ template] ( ExcelLinks/template/Links.xlsx?raw=true ) - [ result] ( ExcelLinks/result.xlsx?raw=true )
93+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ ExcelLinks/template/Links.xlsx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ ExcelLinks/result.xlsx)
9494
9595### [ PowerPoint tables] ( PresentationTables/Readme.md )
9696
9797Populating tables works the same way across formats.
9898
99- [ template] ( PresentationTables/template/tables.pptx?raw=true ) - [ result] ( PresentationTables/result.pptx?raw=true )
99+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ PresentationTables/template/tables.pptx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ PresentationTables/result.pptx)
100100
101101### [ Special Word objects] ( WordLinks/Readme.md )
102102
103103Various Word features are supported.
104104
105- [ template] ( WordLinks/template/Links.docx?raw=true ) - [ result] ( WordLinks/result.docx?raw=true )
105+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ WordLinks/template/Links.docx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ WordLinks/result.docx)
106106
107107### [ Mail merge] ( MailMerge/Readme.md )
108108
109109Inserting pictures via plugins allows for simple templates.
110110
111- [ template] ( MailMerge/template/letter.docx?raw=true ) - [ result] ( MailMerge/result.docx?raw=true )
111+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ MailMerge/template/letter.docx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ MailMerge/result.docx)
112112
113113### [ Pivots] ( PivotExample/Readme.md )
114114
115115Integration with complex office features gets the most out of Templater.
116116
117- [ template] ( PivotExample/template/Pivot.xlsx?raw=true ) - [ result] ( PivotExample/result.xlsx?raw=true )
117+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ PivotExample/template/Pivot.xlsx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ PivotExample/result.xlsx)
118118
119119### [ Excel pushdown] ( PushDownExample/Readme.md )
120120
121121When region extends, stuff needs to be moved around.
122122
123- [ template] ( PushDownExample/template/MyTable.xlsx?raw=true ) - [ result] ( PushDownExample/result.xlsx?raw=true )
123+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ PushDownExample/template/MyTable.xlsx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ PushDownExample/result.xlsx)
124124
125125### [ .NET DataSet] ( DataSet%20(.NET)/Readme.md )
126126
127127Master-detail relationship in DataSet type. Injecting colors via XML type.
128128
129- [ template] ( DataSet%20(.NET)/SampleLetter.docx?raw=true ) - [ result] ( DataSet%20(.NET)/result.docx?raw=true )
129+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ DataSet%20(.NET)/SampleLetter.docx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ DataSet%20(.NET)/result.docx)
130130
131131### [ Dynamic resize] ( DynamicResize/Readme.md )
132132
133133When number of columns is unknown - two dimensional objects can be used.
134134
135- [ template] ( DynamicResize/template/GroceryList.docx?raw=true ) - [ result] ( DynamicResize/result.docx?raw=true )
135+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ DynamicResize/template/GroceryList.docx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ DynamicResize/result.docx)
136136
137137### [ Conversion to formulas] ( ToFormulaConversion/Readme.md )
138138
139139Special tag ** [[ equals]] ** is used to convert cells into formulas.
140140
141- [ template] ( ToFormulaConversion/template/SimpleConversion.xlsx?raw=true ) - [ result] ( ToFormulaConversion/result.xlsx?raw=true )
141+ [ template] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ ToFormulaConversion/template/SimpleConversion.xlsx) - [ result] ( https://github.com/ngs-doo/TemplaterExamples/raw/master/Beginner/ ToFormulaConversion/result.xlsx)
0 commit comments