Adding XMLHTML parsing dependencies for Markdeep import/export of Lepiter interactive notes.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2022-02-07 08:35:32 -05:00
parent 167216acc8
commit 92cebdfe04
1 changed files with 14 additions and 1 deletions

View File

@ -23,7 +23,7 @@ BaselineOfGrafoscopioUtils >> baseline: spec [
]
]
{ #category : #'as yet unclassified' }
{ #category : #accessing }
BaselineOfGrafoscopioUtils >> fossil: spec [
"I load the configuration of Fossil using a external Gitea repository."
"While more Git independient providers are implemented in Monticello, I will use Iceberg
@ -44,3 +44,16 @@ BaselineOfGrafoscopioUtils >> fossil: spec [
load.
spec baseline: 'Fossil' with: [ spec repository: 'gitlocal://', location fullName ]
]
{ #category : #accessing }
BaselineOfGrafoscopioUtils >> 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']
]