Test
This commit is contained in:
12
.github/workflows/docs.yml
vendored
12
.github/workflows/docs.yml
vendored
@@ -21,8 +21,16 @@ jobs:
|
|||||||
uses: leafo/gh-actions-lua@v8
|
uses: leafo/gh-actions-lua@v8
|
||||||
with:
|
with:
|
||||||
luaVersion: 5.4
|
luaVersion: 5.4
|
||||||
- name: Create docs directory
|
- name: Checkout existing docs
|
||||||
run: mkdir -p build_docs/docs/references
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
ref: gh-pages
|
||||||
|
path: build_docs
|
||||||
|
- name: Prepare references directory
|
||||||
|
run: |
|
||||||
|
mkdir -p build_docs/docs
|
||||||
|
rm -rf build_docs/docs/references
|
||||||
|
mkdir -p build_docs/docs/references
|
||||||
- name: Process markdown files
|
- name: Process markdown files
|
||||||
run: |
|
run: |
|
||||||
find src -type f -name "*.lua" | while read file; do
|
find src -type f -name "*.lua" | while read file; do
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ basalt.LOGGER = require("log")
|
|||||||
local mainFrame = nil
|
local mainFrame = nil
|
||||||
local updaterActive = false
|
local updaterActive = false
|
||||||
|
|
||||||
--- Creates and returns a new UI element of the specified type!
|
--- Creates and returns a new UI element of the specified type
|
||||||
--- @shortDescription Creates a new UI element
|
--- @shortDescription Creates a new UI element
|
||||||
--- @param type string The type of element to create (e.g. "Button", "Label", "BaseFrame")
|
--- @param type string The type of element to create (e.g. "Button", "Label", "BaseFrame")
|
||||||
--- @param id? string Optional unique identifier for the element
|
--- @param id? string Optional unique identifier for the element
|
||||||
|
|||||||
Reference in New Issue
Block a user