Skip to content

Commit 2b0cb83

Browse files
committed
Fixing broken Github links
It seems ?raw=true is not working anymore, so put in an explicit link :(
1 parent d4e87da commit 2b0cb83

File tree

3 files changed

+52
-52
lines changed

3 files changed

+52
-52
lines changed

Advanced/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,43 +6,43 @@ Learning how to work around some limitations and use various advanced features.
66

77
Tags are supported in sheet names. Easy to create report - per sheet(s).
88

9-
[template](SheetReport/template/Report.xlsx?raw=true) - [result](SheetReport/result.xlsx?raw=true)
9+
[template](https://github.com/ngs-doo/TemplaterExamples/raw/master/Advanced/SheetReport/template/Report.xlsx) - [result](https://github.com/ngs-doo/TemplaterExamples/raw/master/Advanced/SheetReport/result.xlsx)
1010

1111
### [Multi-step processing](DoubleProcessing/Readme.md)
1212

1313
Sometimes documents needs to be processed multiple times before final report can be created.
1414

15-
[template](DoubleProcessing/template/ResizeWithNesting.xlsx?raw=true) - [result](DoubleProcessing/result.xlsx?raw=true)
15+
[template](https://github.com/ngs-doo/TemplaterExamples/raw/master/Advanced/DoubleProcessing/template/ResizeWithNesting.xlsx) - [result](https://github.com/ngs-doo/TemplaterExamples/raw/master/Advanced/DoubleProcessing/result.xlsx)
1616

1717
### [XML binding](XmlBinding/Readme.md)
1818

1919
Templater also integrates with Word XML binding feature, it will manage bound XML files.
2020

21-
[template](XmlBinding/template/Binding.docx?raw=true) - [result](XmlBinding/result.docx?raw=true)
21+
[template](https://github.com/ngs-doo/TemplaterExamples/raw/master/Advanced/XmlBinding/template/Binding.docx) - [result](XmlBinding/result.docx)
2222

2323
### [Simple sales order application](SalesOrderMVP%20(.NET)/Readme.md)
2424

2525
Templater makes it very convenient to manage report templates.
2626

27-
[Sales order Word](SalesOrderMVP%20(.NET)/Templates/SalesOrderItem.docx?raw=true) - [result](SalesOrderMVP%20(.NET)/result-one.docx?raw=true)
27+
[Sales order Word](https://github.com/ngs-doo/TemplaterExamples/raw/master/Advanced/SalesOrderMVP%20(.NET)/Templates/SalesOrderItem.docx) - [result](https://github.com/ngs-doo/TemplaterExamples/raw/master/Advanced/SalesOrderMVP%20(.NET)/result-one.docx)
2828

29-
[Sales order Excel](SalesOrderMVP%20(.NET)/Templates/SalesOrderItem.xlsx?raw=true) - [result](SalesOrderMVP%20(.NET)/result-one.xlsx?raw=true)
29+
[Sales order Excel](https://github.com/ngs-doo/TemplaterExamples/raw/master/Advanced/SalesOrderMVP%20(.NET)/Templates/SalesOrderItem.xlsx) - [result](https://github.com/ngs-doo/TemplaterExamples/raw/master/Advanced/SalesOrderMVP%20(.NET)/result-one.xlsx)
3030

31-
[Sales order analysis](SalesOrderMVP%20(.NET)/Templates/SalesOrderGrid.xlsx?raw=true) - [result](SalesOrderMVP%20(.NET)/result-grid.xlsx?raw=true)
31+
[Sales order analysis](https://github.com/ngs-doo/TemplaterExamples/raw/master/Advanced/SalesOrderMVP%20(.NET)/Templates/SalesOrderGrid.xlsx) - [result](https://github.com/ngs-doo/TemplaterExamples/raw/master/Advanced/SalesOrderMVP%20(.NET)/result-grid.xlsx)
3232

3333
[Sales order for printing](SalesOrderMVP%20(.NET)/Templates/SalesOrder.txt) - [result](SalesOrderMVP%20(.NET)/result.txt)
3434

3535
### [Complex Excel report](DepartmentReport/Readme.md)
3636

3737
Combining various Excel features to create good-looking report. Using expression parser for filtering.
3838

39-
[template](DepartmentReport/template/departments.xlsx?raw=true) - [result](DepartmentReport/result.xlsx?raw=true)
39+
[template](https://github.com/ngs-doo/TemplaterExamples/raw/master/Advanced/DepartmentReport/template/departments.xlsx) - [result](https://github.com/ngs-doo/TemplaterExamples/raw/master/Advanced/DepartmentReport/result.xlsx)
4040

4141
### [Power Query/Get & Transform](PowerQuery/Readme.md)
4242

4343
Consuming embedded CSV or Excel table via Power Query (Requires Excel 2010+)
4444

45-
[template](PowerQuery/template/PowerQuery.xlsx?raw=true) - [result](PowerQuery/result.xlsx?raw=true)
45+
[template](https://github.com/ngs-doo/TemplaterExamples/raw/master/Advanced/PowerQuery/template/PowerQuery.xlsx) - [result](https://github.com/ngs-doo/TemplaterExamples/raw/master/Advanced/PowerQuery/result.xlsx)
4646

4747
### [CSV streaming](Streaming/Readme.md)
4848

Beginner/README.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,31 @@ Introduction to basic features and processing rules.
66

77
Replacing 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

1313
Replacing 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

1919
Replacing 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

2525
How 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

3131
Templater 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

4343
Templater 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

4949
Templater 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

5555
While 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

6161
Word 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

6767
Resizing 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

7373
CSV 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

7979
In 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

8585
Context 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

9191
Various 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

9797
Populating 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

103103
Various 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

109109
Inserting 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

115115
Integration 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

121121
When 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

127127
Master-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

133133
When 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

139139
Special 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

Comments
 (0)