@inceptionstack/roundhouse 0.3.23 → 0.3.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inceptionstack/roundhouse",
3
- "version": "0.3.23",
3
+ "version": "0.3.25",
4
4
  "type": "module",
5
5
  "description": "Multi-platform chat gateway that routes messages through a configured AI agent",
6
6
  "license": "MIT",
@@ -133,7 +133,8 @@ function formatTable(tableMd: string): string {
133
133
  if (cp >= 0xFE00 && cp <= 0xFE0F) return 0;
134
134
  // Tags block (used in flag sequences etc)
135
135
  if (cp >= 0xE0001 && cp <= 0xE007F) return 0;
136
- // Emoji (common ranges)
136
+ // Emoji — standard 2-column width (Telegram renders slightly wider but
137
+ // fractional widths can't be fixed with integer padding; 2 is closest)
137
138
  if (cp >= 0x1F100 && cp <= 0x1FAFF) return 2;
138
139
  if (cp >= 0x231A && cp <= 0x23FF) return 2;
139
140
  if (cp >= 0x2600 && cp <= 0x27BF) return 2;