-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6f3c648
commit c83ddb5
Showing
2 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
function runSomeScript() { | ||
console.log('%c AgentScript', 'font-weight: bold; font-size: 50px;color: red; text-shadow: 3px 3px 0 rgb(217,31,38) , 6px 6px 0 rgb(226,91,14) , 9px 9px 0 rgb(245,221,8) , 12px 12px 0 rgb(5,148,68) , 15px 15px 0 rgb(2,135,206) , 18px 18px 0 rgb(4,77,145) , 21px 21px 0 rgb(42,21,113)'); | ||
} | ||
|
||
runSomeScript() | ||
|
||
|
||
function addLiveCodeExampleForAgentArrayPage() { | ||
const containerElement = document.querySelector('body article div') | ||
const liveCodeContainer = document.createElement('div') | ||
|
||
/** | ||
* Adding some clean-jsdoc-theme class names | ||
*/ | ||
liveCodeContainer.classList.add('method-member-container', 'flex', 'flex-col', 'w-100', 'overflow-auto', 'mt-20') | ||
|
||
|
||
liveCodeContainer.innerHTML += ` | ||
<strong>Coding Playground</strong> | ||
<iframe src="https://agentscript.org/editor/?example=slimemold" style="height:700px; width: 100%; background: white;" class="mt-20"></iframe> | ||
` | ||
|
||
containerElement.append(liveCodeContainer) | ||
} | ||
|
||
window.addEventListener('DOMContentLoaded', addLiveCodeExampleForAgentArrayPage); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,11 +24,22 @@ | |
"default_theme": "dark", | ||
"exclude_inherited": false, | ||
"include_css": [ | ||
"./demo/src/assets/style.css" | ||
{ | ||
"filepath": "./demo/src/assets/style.css", | ||
"targets": [ | ||
"AgentArray" | ||
] | ||
} | ||
], | ||
"include_js": [ | ||
"./demo/src/assets/script.js", | ||
"./demo/src/assets/run-only-for-agentscript.js" | ||
{ | ||
"filepath": "./demo/src/assets/agentarray.js", | ||
"targets": [ | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
ankitskvmdam
Author
Owner
|
||
"AgentArray", | ||
"tutorial-AgentArray_" | ||
] | ||
} | ||
], | ||
"static_dir": [ | ||
"./demo/src/assets/png", | ||
|
This script will only be added to the following files: