Skip to content

Commit fe79a79

Browse files
committed
Put links for server names
1 parent 91e5f4f commit fe79a79

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ <h4>Unified Architecture</h4>
222222
<ion-icon name="server-outline" size="large"></ion-icon>
223223
</div>
224224
<h4>Multiple Servers</h4>
225-
<p>HttpServer is the built-in default, but also supports Tomcat, Netty HTTP server, and Undertow.</p>
225+
<p>HttpServer is the built-in default, but also supports <a href="https://github.com/tinystruct/tinystruct-tomcat-server" target="_blank">Tomcat</a>, <a href="https://github.com/tinystruct/tinystruct-netty-http-server" target="_blank">Netty</a> HTTP server, and <a href="https://github.com/tinystruct/tinystruct-undertow-server" target="_blank">Undertow</a>.</p>
226226
</div>
227227

228228
<div class="feature-item">
@@ -325,7 +325,7 @@ <h4>Zero Configuration</h4>
325325
'unified': '统一架构',
326326
'unified-desc': '只需编写一次逻辑,即可同时作为命令行接口和 Web API 发布。',
327327
'servers': '多服务器支持',
328-
'servers-desc': '默认内置 HttpServer,同时也支持 TomcatNetty HTTP server 和 Undertow。',
328+
'servers-desc': '默认内置 HttpServer,同时也支持 <a href="https://github.com/tinystruct/tinystruct-tomcat-server" target="_blank">Tomcat</a>、<a href="https://github.com/tinystruct/tinystruct-netty-http-server" target="_blank">Netty</a> HTTP server 和 <a href="https://github.com/tinystruct/tinystruct-undertow-server" target="_blank">Undertow</a>。',
329329
'ai': 'AI 就绪 (MCP)',
330330
'ai-desc': '原生集成模型上下文协议 (MCP),用于构建下一代 AI 应用程序。',
331331
'sse': '实时 SSE',
@@ -352,7 +352,7 @@ <h4>Zero Configuration</h4>
352352
'unified': 'Unified Architecture',
353353
'unified-desc': 'Write your logic once and expose it as both a Command Line Interface and a Web API instantly.',
354354
'servers': 'Multiple Servers',
355-
'servers-desc': 'HttpServer is the built-in default, but also supports Tomcat, Netty HTTP server, and Undertow.',
355+
'servers-desc': 'HttpServer is the built-in default, but also supports <a href="https://github.com/tinystruct/tinystruct-tomcat-server" target="_blank">Tomcat</a>, <a href="https://github.com/tinystruct/tinystruct-netty-http-server" target="_blank">Netty</a> HTTP server, and <a href="https://github.com/tinystruct/tinystruct-undertow-server" target="_blank">Undertow</a>.',
356356
'ai': 'AI Ready (MCP)',
357357
'ai-desc': 'Native integration with Model Context Protocol for building next-gen AI applications.',
358358
'sse': 'Real-time SSE',
@@ -392,7 +392,7 @@ <h4>Zero Configuration</h4>
392392
featureItems.forEach((item, index) => {
393393
const key = keys[index];
394394
item.querySelector('h4').textContent = t['features'][key];
395-
item.querySelector('p').textContent = t['features'][key + '-desc'];
395+
item.querySelector('p').innerHTML = t['features'][key + '-desc'];
396396
});
397397

398398
// Update Perf Card

0 commit comments

Comments
 (0)