Skip to content

Commit

Permalink
build based on fa69ace
Browse files Browse the repository at this point in the history
  • Loading branch information
Documenter.jl committed Oct 10, 2023
1 parent 468f99b commit e91790e
Show file tree
Hide file tree
Showing 19 changed files with 961 additions and 0 deletions.
2 changes: 2 additions & 0 deletions previews/PR66/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Treat all data files as binary
data/** binary
35 changes: 35 additions & 0 deletions previews/PR66/Data.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Version of the data TOML format.
data_config_version=1

[[datasets]]
# Some alphanumeric name (can include spaces and underscores)
name="a_text_file"
# Optional description
description="A text file containing the standard greeting"
# A unique ID. Generate with UUIDs.uuid4()
uuid="b498f769-a7f6-4f67-8d74-40b770398f26"

# Storage location
[datasets.storage]
# The name of the storage driver.
driver="FileSystem"
# Data stored in FileSystem is either File (a file) or FileTree (a directory/folder)
type="File"
# Path with posix `/` separators.
# Relative paths are relative to the location of Data.toml
path="data/file.txt"

# A second example
[[datasets]]
name="a_tree_example"
description="A very simple directory tree"
uuid="e7fd7080-e346-4a68-9ca9-98593a99266a"

[datasets.storage]
driver="FileSystem"
type="FileTree"
path="data/csvset"

# Further datasets can be added as desired
# [[datasets]]
# ...
331 changes: 331 additions & 0 deletions previews/PR66/assets/documenter.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e91790e

Please sign in to comment.