doc: update README.md
This commit is contained in:
parent
0c6686f5a0
commit
779877953c
3 changed files with 25 additions and 4 deletions
|
|
@ -14,8 +14,8 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
BEGIN{
|
BEGIN{
|
||||||
# printf README.md until '# Component List'
|
# printf README.md until '# library functions'
|
||||||
system("grep -B9999 '# Functions' README.md")
|
system("grep -B9999 '# library functions' README.md")
|
||||||
print ""
|
print ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
10
README.md
10
README.md
|
|
@ -8,4 +8,12 @@ See function list below
|
||||||
|
|
||||||
> this README.md is generated by running `echo "$(./README.awk *.js)" > README.md`
|
> this README.md is generated by running `echo "$(./README.awk *.js)" > README.md`
|
||||||
|
|
||||||
# Function list
|
# library functions
|
||||||
|
|
||||||
|
|
||||||
|
### import {...} from 'xrf/level0'
|
||||||
|
|
||||||
|
| function | example |
|
||||||
|
|------------------------|-------------------------------------------------------------------------|
|
||||||
|
| fetchSideCarFiles(...) | fetchSideCarFiles("https://f.org/a.glb") // ["https://f.org/a.png",...] |
|
||||||
|
|
||||||
|
|
|
||||||
15
level0.js
15
level0.js
|
|
@ -1,3 +1,11 @@
|
||||||
|
/**
|
||||||
|
* ### import {...} from 'xrf/level0'
|
||||||
|
*
|
||||||
|
* | function | example |
|
||||||
|
* |------------------------|-------------------------------------------------------------------------|
|
||||||
|
* | fetchSideCarFiles(...) | fetchSideCarFiles("https://f.org/a.glb") // ["https://f.org/a.png",...] |
|
||||||
|
*
|
||||||
|
*/
|
||||||
import * as http from './scheme/http.js'
|
import * as http from './scheme/http.js'
|
||||||
import * as xrf from './scheme/http.js'
|
import * as xrf from './scheme/http.js'
|
||||||
|
|
||||||
|
|
@ -5,7 +13,12 @@ function defaultSchemes(){
|
||||||
return {http,xrf}
|
return {http,xrf}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function pollSideCarFiles(urlString, opts){
|
async function sideCarFiles(urlString, opts){
|
||||||
|
|
||||||
|
const sext = [".png",".ogg",".vtt",".json"]
|
||||||
|
}
|
||||||
|
|
||||||
|
async function fetchSideCarFiles(urlString, opts){
|
||||||
|
|
||||||
opts = {}
|
opts = {}
|
||||||
opts.scheme = opts.scheme || defaultSchemes()
|
opts.scheme = opts.scheme || defaultSchemes()
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue