Skip to content

Commit

Permalink
Merge pull request #71 from ASML-Labs/parent-dir-docs-images
Browse files Browse the repository at this point in the history
parent dir docs images
  • Loading branch information
matthijscox-asml authored Oct 29, 2024
2 parents e4e9aae + c41f592 commit 890fd16
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
1 change: 1 addition & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Documenter.Remotes: GitHub
DocMeta.setdocmeta!(PPTX, :DocTestSetup, :(using PPTX, DataFrames, Colors); recursive=true)

makedocs(;
clean=true,
modules=[PPTX],
#doctest=false,
authors="ASML",
Expand Down
17 changes: 12 additions & 5 deletions docs/src/tablestyle.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ push!(s, t)
write("example.pptx", p; overwrite=true)
```

![default table](./assets/images/table.png)
```@raw html
<img src="../assets/images/table.png" width="400px"/>
```

## General table styles

Expand All @@ -45,8 +47,9 @@ push!(s, t)
write("example.pptx", p; overwrite=true)
```

![table no header](./assets/images/table_no_header.png)

```@raw html
<img src="../assets/images/table_no_header.png" width="400px"/>
```

## Table element styling

Expand Down Expand Up @@ -105,7 +108,9 @@ push!(s, t)
write("example.pptx", p; overwrite=true)
```

![styled table](./assets/images/styled_table.png)
```@raw html
<img src="../assets/images/styled_table.png" width="400px"/>
```

## Table from Matrix

Expand Down Expand Up @@ -195,4 +200,6 @@ write("example.pptx", p; overwrite=true)

```

![decision table](./assets/images/decision_table.png)
```@raw html
<img src="../assets/images/decision_table.png" width="400px"/>
```

2 comments on commit 890fd16

@matthijscox-asml
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

  • actually fix docs images

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/118281

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.10.2 -m "<description of version>" 890fd16bf3fffdcfaf491048a0f18a8923df3d50
git push origin v0.10.2

Please sign in to comment.