Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ Valid: βœ“
- `enabled` β†’ Enabled/Disabled
- `active` β†’ Active/Inactive

See the [Format Specifiers Guide](guides/format-specifiers.md) for complete documentation.
See the [Format Specifiers Guide](for-template-authors/format-specifiers.md) for complete documentation.

### Q: Can I use JSON instead of C# dictionaries?

Expand Down Expand Up @@ -402,7 +402,7 @@ Can proceed: βœ“
- Comparison: `==`, `!=`, `>`, `>=`, `<`, `<=`
- Nested: `((var1 or var2) and var3)`

See the [Boolean Expressions Guide](guides/boolean-expressions.md) for complete documentation.
See the [Boolean Expressions Guide](for-template-authors/boolean-expressions.md) for complete documentation.

### Q: Can I combine expressions with format specifiers?

Expand Down
57 changes: 57 additions & 0 deletions docs/for-developers/quick-start.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Developer Documentation - Coming Soon!

We're currently reorganizing our documentation to better serve both template authors and developers.

## What's Coming

The developer documentation section will include:

- **Installation Guide** - NuGet package installation and setup
- **Quick Start Guide** - Your first Templify integration in C#
- **API Reference** - Complete API documentation with examples
- **Code Examples** - Real-world integration patterns
- **Architecture Overview** - Understanding the visitor pattern and internals
- **Performance Guide** - Optimization tips and benchmarks

## In the Meantime

You can find comprehensive developer documentation in:

- **[Main Library README](../../TriasDev.Templify/README.md)** - Complete API reference with C# examples
- **[Examples.md](../../TriasDev.Templify/Examples.md)** - Extensive code samples
- **[Architecture.md](../../TriasDev.Templify/ARCHITECTURE.md)** - Detailed architecture documentation

## Quick Installation

```bash
dotnet add package TriasDev.Templify
```

## Basic Usage

```csharp
using TriasDev.Templify;

var data = new Dictionary<string, object>
{
["CustomerName"] = "John Doe",
["OrderDate"] = DateTime.Now.ToString("yyyy-MM-dd")
};

var processor = new DocumentTemplateProcessor();
using var templateStream = File.OpenRead("template.docx");
using var outputStream = File.Create("output.docx");

var result = processor.ProcessTemplate(templateStream, outputStream, data);

if (result.Success)
{
Console.WriteLine("Template processed successfully!");
}
```

## Need Help?

- πŸ› [Report Issues](https://github.com/triasdev/templify/issues)
- πŸ’¬ [Discussions](https://github.com/triasdev/templify/discussions)
- πŸ“– [Current Documentation](../../TriasDev.Templify/README.md)
Loading