Class { #name : #BaselineOfMiniDocs, #superclass : #BaselineOf, #category : #BaselineOfMiniDocs } { #category : #accessing } BaselineOfMiniDocs >> baseline: spec [ spec for: #common do: [ "Dependencies" spec baseline: 'Mustache' with: [ spec repository: 'github://noha/mustache' ]; baseline: 'Tealight' with: [ spec repository: 'github://astares/Tealight:main/src' ]; baseline: 'PetitParser' with: [ spec loads: #('Minimal' 'Islands'); repository: 'github://moosetechnology/PetitParser:v3.x.x/src' ]. "self xmlParserHTML: spec." "Packages" spec package: 'MiniDocs' with: [ spec requires: #('Mustache' 'Tealight' "'XMLParserHTML'") ]; package: 'PetitMarkdown' with: [ spec requires: #('PetitParser')] ]. spec ] { #category : #accessing } BaselineOfMiniDocs >> semanticVersion [ ^ '0.2.0' ] { #category : #accessing } BaselineOfMiniDocs >> xmlParserHTML: spec [ Metacello new baseline: 'XMLParserHTML'; repository: 'github://pharo-contributions/XML-XMLParserHTML/src'; onConflict: [ :ex | ex useLoaded ]; onUpgrade: [ :ex | ex useLoaded ]; onDowngrade: [ :ex | ex useLoaded ]; onWarningLog; load. spec baseline: 'XMLParserHTML' with: [spec repository: 'github://pharo-contributions/XML-XMLParserHTML/src'] ]