美人鱼甘特图从 Axis 中排除了周末

Mermaid Gantt exclude weekends from Axis

如何在视觉输出中排除周末? (见下方圆圈区域)。

我想在计数和视觉上排除周末。有办法吗?

这是我的代码,

gantt
    title blabla
    dateFormat  YYYY-DD-MM
    axisFormat %W
    excludes weekends saturday,sunday
    
    section Section
    Task     :a1, 2020-23-03, 5d
    Another task     :after a1  , 15d
    
    section Another
    Task in sec      :2020-20-03  , 12d
    another task      : 24d

似乎较新的版本默认不包括周末

运行这段代码,

# library(DiagrammeR)
gantt
 dateFormat  YYYY-DD-MM
 title blabla
 # axisFormat %d/%m
 # excludes weekends saturday,sunday

section Section
Task     :a1, 2020-23-03, 5d
Another task     :after a1  , 15d

section Another
Task in sec      :2020-20-03  , 12d
another task      : 24d

我明白了,