Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Codemirror 6 #19

Merged
merged 11 commits into from
Dec 14, 2024
Merged
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ bin/
.DS_Store
.idea/
.vscode/
.nova/
*.iml

# ENV
Expand Down
15 changes: 9 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,10 @@ original V [docs.md](https://github.com/vlang/v/blob/master/doc/docs.md)

## External dependencies

You'll need V, of course. Best to
This project only requires V. Best to
[install it from source](https://github.com/vlang/v?tab=readme-ov-file#installing-v-from-source)
if you don't already have it.

Make sure you have [sass](https://sass-lang.com/install/) installed
locally to build the css files.


## Contributing
To setup the generator and contribute changes to it, do this once:
Expand All @@ -31,14 +28,20 @@ To build the documentation, after the setup, run the following commands:
```shell
v run .
```
This will download the latest version
This will download the latest version
of [docs.md](https://github.com/vlang/v/edit/master/doc/docs.md),
then it will regenerate the documentation from it, and save it in the `output`
directory.


## Testing the output

Use V to serve your local copy of the documentation.

```shell
v -e 'import net.http.file; file.serve(folder: "output/")'
```
Now load http://localhost:4001/ in your browser.

The line of code executed will start a basic web server with the documentation created in the "outputs" folder.

Access the documentation on your browser using this url http://localhost:4001/.
20 changes: 14 additions & 6 deletions main.v
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ fn main() {
commit_res := os.execute_or_exit('git ls-remote -h https://github.com/vlang/v.git refs/heads/master')
latest_v_commit_hash := commit_res.output.all_before('\t')

update_sass()
//Removed need for sass, using css variables
//update_sass()

mut ctx := Context{
full_text: response.body
Expand All @@ -39,11 +40,18 @@ mut:
}

fn (mut ctx Context) write_mapping() ! {
content := '
const titles_to_fnames = ${json.encode_pretty(ctx.titles_to_fnames)};
const fnames = ${json.encode_pretty(ctx.pages)};
'
write_output_file('assets/scripts/titles_to_fnames.js', content)!
js_file_index := '
// Lookups of sections to files
vdocs.titles_to_fnames = ${json.encode_pretty(ctx.titles_to_fnames)};
vdocs.fnames = ${json.encode_pretty(ctx.pages)};'

js_src := os.read_file('templates/assets/scripts/v-docs.js') or {
eprintln('Failed to read file: $err')
return
}

write_output_file('assets/scripts/v-docs.js', js_src + js_file_index)!

eprintln('> Total titles: ${ctx.titles_to_fnames.len}')
eprintln('> HTML pages: ${ctx.pages.len}')
}
Expand Down
22 changes: 0 additions & 22 deletions sass.v

This file was deleted.

Loading