An open API service indexing awesome lists of open source software.

https://github.com/logica-web/logica-web.github.io

Documentation for Logica, a logic programming language that compiles to DuckDB, Google BigQuery, PostgreSQL and SQLite.
https://github.com/logica-web/logica-web.github.io

bigquery datalog logic-programming query-language

Last synced: 2 months ago
JSON representation

Documentation for Logica, a logic programming language that compiles to DuckDB, Google BigQuery, PostgreSQL and SQLite.

Awesome Lists containing this project

README

          

# Logica Online Tutorial Setup

### Credit

Huge thanks to [Vitepress](https://vitepress.dev/)

### Implementation

```
conda create -n logica_web
conda activate logica_web
conda install conda-forge::nodejs
npm install vitepress --save-dev
npm run docs:dev
```

Before push
```
npm run docs:build
npm run docs:preview
```

### Rendering Existing Notebook
```bash
jupyter nbconvert %target%.ipynb --to html --template=lab
```
After generating the HTML file, add the following CSS to the `` section of the HTML to eliminate extra spacing:
```css
<style>
html, body {
margin: 0;
padding: 0;
overflow: hidden; /* Avoid scrollbars inside the iframe */
}

```