[09:43:54] Something is weird with Phabricator. This comment looks almost empty: https://phabricator.wikimedia.org/T70385#737861 . But if you click the arrow down button and then "View Raw Remarkup", it shows relevant content. Is the comment syntax parser broken? [10:18:22] (I don't think that's Hackathon related?) Ancient comment imported from Bugzilla, maybe something went wrong 8 years ago in that custom code [10:36:20] by doing some testing in a new comment in preview, it seems like Phabricator doesn't like the string {{#translation:}}. Whenever I add it anywhere, the whole line that includes it just disappears. It also happens in task descriptions [10:38:26] (and a bunch of other words if you exchange `translation` with them, but not all words. peculiar [10:47:31] Huh. Please fıle a tıcket so ıt's at least tracked (and thanks for testıng) [17:43:05] Hello [17:43:06] [17:43:07] How can I generate a map using in Lua? Using the tags directly and returning a chunk like the following did not work. [17:43:09] [17:43:10] [17:50:17] https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual#frame:extensionTag [18:25:52] and https://en.wikipedia.org/wiki/Module:Geonotice_map has an example of that [19:04:49] Thanks. I have a valid JSON but the mapframe seems to reject it. [19:04:51] [19:04:52] { [19:04:54] "type": "FeatureCollection", [19:04:55] "features": [ [19:04:57] { [19:04:58] "type": "Feature", [19:05:00] "properties": { [19:05:01] "marker-symbol": "-number", [19:05:03] "marker-color": "ff0000", [19:05:04] "marker-size": "small" [19:05:06] }, [19:05:07] "geometry": { [19:05:09] "type": "Point", [19:05:10] "coordinates": [ [19:05:12] -0.0824, [19:05:13] 51.5177 [19:05:15] ] [19:05:16] } [19:05:18] }, [19:05:19] { [19:05:21] "type": "Feature", [19:05:22] "properties": { [19:05:24] "marker-symbol": "-number", [19:05:26] "marker-color": "ff0000", [19:05:28] "marker-size": "small" [19:05:30] }, [19:05:32] "geometry": { [19:05:35] "type": "Point", [19:05:37] "coordinates": [ [19:05:39] -0.1666, [19:05:41] :Cannot parse JSON. syntax error [19:09:44] can you pastebin that? [19:12:41] https://www.paste.tc/geojson-25 [19:23:57] How can this be? Even empty JOSN ('{}') gives the same error [19:59:44] The JSON seems to be valid as per https://geojsonlint.com/ [19:59:45] [19:59:46] What may be the issue in Lua? [20:28:29] ok, fixed the issue using the snippet at Module:Geonotice map [20:28:30] [20:28:31] Thanks 😊