Skip to content

Commit

Permalink
Merge pull request #25 from python-project-templates/tkp/zm
Browse files Browse the repository at this point in the history
Add zoom support, add ELK example
  • Loading branch information
timkpaine authored Oct 4, 2024
2 parents 330fa79 + 094099b commit b10da52
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 2 deletions.
40 changes: 38 additions & 2 deletions docs/src/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,44 @@ graph TD;
C-->D;
```

```mermaid
%%{init: {"flowchart": {"defaultRenderer": "elk"}} }%%
graph TD
A[\Replenish Value Add stock/] --->C
B(Order product with Value Add) --->C
C{Frequent process?} --->|Yes|D
C --->|No|F
D{New template?} --->|Yes|E
D --->|No|G
E(Create work order template) --->G
F(Create work order) --->H
G(Copy template to work order) --->I
H(Add materials to work order processes) --->J
I(Adjust material quantities) --->J
J(Monitor work orders) --->K
K{Material quantities in stock?} --->|No|L
K --->|Yes|M
L(Procure materials) --->M
M(Change status to In Progress) --->N
N{External Vendor to perform step?} --->|Yes|O
N --->|No|P
O(Add vendor costs) --->Q
P[\Perform work order step/] --->R
Q([Ship materials to Vendor]) --->S --->X
R{Additional processing required?} --->|Yes|N
R--->|No|T
S[\Perform work order step/] --->U
T(Receive final stock) --->V
U(Receive product from vendor) --->W
V(Ship product on order) --->Y
W{Partial quantity received?} --->|Yes|X
W --->|No|Z
X[Create work order backorder] ---> J
Y(Change status to complete) --->AA
Z(Pay vendor invoice) --->R
AA([Finish])
```

## GitHub Admonitions

Expand All @@ -211,5 +249,3 @@ GitHub admonitions are automatically translated to sphinx.
> [!CAUTION]
> Caution content


3 changes: 3 additions & 0 deletions yardang/conf.py.j2
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ myst_fence_as_directive = {{myst_fence_as_directive}}
nb_execution_mode = "{{nb_execution_mode}}"
nb_execution_excludepatterns = {{nb_execution_excludepatterns}}

#sphinxcontrib.mermaid
mermaid_d3_zoom = True

# autosummary
autosummary_generate = True

Expand Down

0 comments on commit b10da52

Please sign in to comment.