manydecks icon indicating copy to clipboard operation
manydecks copied to clipboard

Support for repeated slots.

Open Lattyware opened this issue 5 years ago • 0 comments

Massive Decks already supports this via an optional index parameter on slots, so if we can produce it, it'll work, e.g:

  calls: [
    [
      ["Steve Ballmer:"],
      [
        "“",
        { "transform": "UpperCase" },
        ", ",
        { "transform": "UpperCase", "index": 0 },
        ", ",
        { "transform": "UpperCase", "index": 0 },
        ".”",
      ],
    ],
  ],
  responses: [
    "developers",
  ]

image image

The question is how to integrate this nicely into the editor experience.

Lattyware avatar May 30 '20 15:05 Lattyware