MiniWord icon indicating copy to clipboard operation
MiniWord copied to clipboard

.NET Word(docx) exporting template engine without COM+ & interop (support Linux and Mac)

Results 52 MiniWord issues
Sort by recently updated
recently updated
newest added

https://github.com/Sayi/poi-tl/issues/13

http://deepoove.com/poi-tl/#plugin-dynamic-table

![image](https://user-images.githubusercontent.com/12729184/192287589-4227b16e-b035-4466-a257-a3338d900097.png) ``` My { { title }} ```

兼容换行问题: 若字符串中存在"\n"或"\r\n",在Word换行时会多一行。 此问题其它用户在issue中也已提到 [https://github.com/mini-software/MiniWord/issues/25](url) 超链接不支持数组: 当我想要插入超链接数组/列表时 最终的结果会在Word中显示以下字符串,无法插入超链接: MiniSoftware.MiniWordHyperLink[] 或 System.Collections.Generic.List`1[MiniSoftware.MiniWordHyperLink]

目前使用巢狀表格時會有問題 Template: ![miniwordTemp](https://user-images.githubusercontent.com/21062443/191444178-85ec13cb-f343-4185-93e0-efb3259794f0.jpg) 預期結果: ![miniword1](https://user-images.githubusercontent.com/21062443/191444317-b3e0f1d6-6104-4a9b-ab07-4001df20ab94.jpg) 實際結果: ![miniword2](https://user-images.githubusercontent.com/21062443/191444362-bb30f68a-3ef7-45d9-a774-a888ddbfdff3.jpg)

这是对于未来的功能设计建议 常用功能: 进度 功能 说明 用处/领域 代码建议 × 简单生成Word 文字,图片,表格,段落 简单文档,说明书,等要求不严格的地方 MiniWord.SaveAs(string path, object value, WordType wordType);MiniWord.SaveAs(string path, WordInfo value, WordType wordType); × 简单获取Word 可以按需求提取简单纯文字,图片,表格,段落 简单需要获取文档信息地方 WordInfo wordInfo = MiniWord.Query(string...

e,g http://deepoove.com/poi-tl/#_%E5%9F%BA%E6%9C%AC%E4%BD%BF%E7%94%A8 ``` {{name}} {{name.toUpperCase()}} {{name == 'poi-tl'}} {{empty?:'这个字段为空'}} {{sex ? '男' : '女'}} {{new java.text.SimpleDateFormat('yyyy-MM-dd HH:mm:ss').format(time)}} {{price/10000 + '万元'}} {{dogs[0].name}} {{localDate.format(T(java.time.format.DateTimeFormatter).ofPattern('yyyy年MM月dd日'))}} ```