/ittf/site/docs/concepts/t/wizzischemas/introduction.html.ittf (primary)
1 $group2 $3 var sect = {4 title: 'Wizzi Schemas'5 };6 section( §)7 p A Wizzi Schema is the core modeling tool of the Wizzi factory.8 \b In it you define the types of the node names of an9 to-docs( mTree )10 + .11 p Wizzi Schemas are coded in ITTF Document source files of type12 high-code( wfschema )13 + .14 ittf-panel15 title Sample 'rdbms' Wizzi Schema16 ittf17 wfschema rdbms18 e catalog19 r table/s20 e table21 r column/s22 r index/es23 e column24 a type25 a caption26 a defaultValue27 tag default28 e index29 a primary30 type boolean31 a unique32 type boolean33 r column/s34 ittf-panel35 title Sample 'rdbms' ITTF Document conformant to the above wfschema36 ittf37 rdbms School38 table Student39 column Id40 type integer41 column Name42 type string43 index Student-PK44 primary true45 column Id46 table Course47 column Id48 type integer49 column Title50 type string51 index Student-PK52 primary true53 column Id54 p The Wizzi Schema of type `wfschema` is55 \b implemented by the56 to-plugin( wizzi-core)57 span plugin.
/ittf/site/docs/concepts/t/section.html.ittf
1 $group2 $params §3 article4 . doc-title5 id ${sect.id}6 + ${sect.title}7 . doc-summary8 $hook
/ittf/site/docs/t/to-docs.html.ittf
1 a2 $params name3 $if name.toLowerCase() === 'mtree' || name.toLowerCase() === 'mtrees'4 a ${name}5 href ${wzCtx.Params.baseUrl}/docs/mtrees.html6 $elif name.toLowerCase() === 'ITTF Document' || name.toLowerCase() === 'ITTF Documents'7 a ${name}8 href ${wzCtx.Params.baseUrl}/docs/ittfdocuments.html9 $elif name === 'Template engine'10 a ${name}11 href ${wzCtx.Params.baseUrl}/docs/templateengine.html12 $elif name.toLowerCase() === 'jswizzi'13 a ${name}14 href ${wzCtx.Params.baseUrl}/docs/jswizzi.html15 $elif name.toLowerCase() === 'wizzi model' || name.toLowerCase() === 'wizzi models'16 a ${name}17 href ${wzCtx.Params.baseUrl}/docs/wizzimodels.html18 $elif name.toLowerCase() === 'wizzi schema' || name.toLowerCase() === 'wizzi schemas'19 a ${name}20 href ${wzCtx.Params.baseUrl}/docs/wizzischemas.html21 $elif name.toLowerCase() === 'wizzi model dom' || name.toLowerCase() === 'wizzi model doms'22 a ${name}23 href ${wzCtx.Params.baseUrl}/docs/wizzimodeldoms.html24 $elif name.toLowerCase() === 'model transformers'25 a ${name}26 href ${wzCtx.Params.baseUrl}/docs/modeltransformers.html27 $elif name.toLowerCase() === 'artifact generations'28 a ${name}29 href ${wzCtx.Params.baseUrl}/docs/artifacts.html30 $elif name.toLowerCase() === 'wizzi api' || name.toLowerCase() === 'wizzi.wizzifactory'31 a ${name}32 href ${wzCtx.Params.baseUrl}/docs/wizziapi.html33 $else34 h1 ERROR to-docs unknown ${name}
/ittf/site/docs/t/high-code.html.ittf
1 $group2 $params text, kind|@@null3 $if kind != 'nospace'4 span ${} ${}5 code6 class highlight-code7 + ${text}8 $if kind != 'nospace'9 span ${} ${}
/ittf/site/docs/t/to-plugin.html.ittf
1 $group2 $params name, kind|@@null3 $4 // var xname = kind != 'nospace' ? ' ' + name + ' ' : name5 $if kind != 'nospace'6 span ${} ${}7 code8 class highlight-code9 a ${name}10 href https://github.com/stfnbssl/wizzi.plugins/tree/main/packages/wizzi.plugin.${name}11 target _blank12 $if kind != 'nospace'13 span ${} ${}