https://github.com/evref-bl/famix-html
https://github.com/evref-bl/famix-html
famix moose
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/evref-bl/famix-html
- Owner: Evref-BL
- Created: 2023-05-17T06:41:51.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-23T10:46:32.000Z (over 2 years ago)
- Last Synced: 2025-01-25T20:26:39.575Z (over 1 year ago)
- Topics: famix, moose
- Language: Smalltalk
- Homepage:
- Size: 224 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Famix-Html
[](https://coveralls.io/github/Evref-BL/Famix-Html?branch=main)
A Famix meta-model to represent HTML files.
## Installation
```st
Metacello new
githubUser: 'Evref-BL' project: 'Famix-Html' commitish: 'main' path: 'src';
baseline: 'FamixHtml';
load
```
## Usage
```st
importer := FamixHtmlImporter new.
importer model: FamixHtmlModel new.
importer importString: '
hello
'.
importer model
```