Squib:自动编号卡

时间:2017-02-02 20:08:55

标签: ruby squib

爆管中是否有能够自动编号卡的功能?例如,从

开始
class ArticleParser() {
  _title;

  async genTitle() {
    if (!this._title) {
      this._title = await takesALongTime();
    }

    return this._title;
  }
}

我可以在卡片上标记卡片中的卡片#1,#2等。感谢。

1 个答案:

答案 0 :(得分:2)

它不一定是引爆功能,但您可以使用范围对卡片进行编号:

cards = 6
Squib::Deck.new(cards: cards) do
  text str: (1..cards)
end