I’m pasting this directly from Gemini teaching me but I’m very new to TiddlyWiki and Windows. I searched for subcategories for this but didn’t immediately f>be that. Gemini instructed to jump to developer but I thought I’d try “here” first. Unsure relative tags, can they be updated?
Gemini report:
CRITICAL BUG: JSON Array Iteration (jsonget$/:map) and WikiText Conflict (v5.3.8)
| Section | Detail | 
|---|---|
| TiddlyWiki Version | 5.3.8 | 
| Operating System | Windows 11 | 
| Running Method | TiddlyDesktop | 
| Primary Failure | The complex filter required to read and iterate a JSON array (jsonget$ :map) either fails to execute or outputs malformed text, causing subsequent WikiText rendering failures. | 
Steps to Reproduce (The Accurate Fruit Example):
- Create Data Tiddler ($:/BugReport/JsonData)
- Title: $:/BugReport/JsonData
- Type: application/json
- Text Field Content (The specific JSON syntax):
[
  {"name": "Apple", "color": "red"},
  {"name": "Banana", "color": "yellow"}
]
- Create Report Tiddler ($:/BugReport/Report)
- Title: $:/BugReport/Report
- Paste the following text into the content field:
 !! Test 1: JSON Array Iteration (Primary Failure Check)
|!Fruit|!Color|
|:---|:---|<$list filter="[tiddler[$:/BugReport/JsonData]jsonget$] :map[jsonget[name]jsonget[color]]">
|<$text text={{{ [enlist<currentTiddler>nth[1]] }}}/> |<$text text={{{ [enlist<currentTiddler>nth[2]] }}}/>|
</$list>
!! Test 2: Adjacent Table (Secondary Failure Check - WikiText Conflict)
| !Status | 
|---|
| OK | 
Observed Failure:
- 
JSON Iteration Failure (Test 1): The filter does not generate the two expected rows (Apple/red, Banana/yellow). [Gemini really wrong — renders as: |!Fruit|!Color||:—|:—| saparate lines doesn’t JSON], or the entire block fails to render correctly, confirming that the complex filter syntax is broken in this version/environment. 
- 
WikiText Conflict Failure (Test 2): [I’m wrestling hard with Gemini — it says failure with confusing logic of table on same line as JSON failing but JSON failing either way and contradictory to AI the table renders by itself normally]. 
Gemini says JSON should work by itself but it’s prepared to walk me through plugins (syntax I don’t want) or node.js as server which is interesting but something else and I’m not too familiar with Windows. Gemini too much focus on table…