Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions .github/workflows/htmlproofer.yml

This file was deleted.

6 changes: 6 additions & 0 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@

{% seo %}

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@400;600&family=Noto+Serif:wght@300;400;600;700&display=swap" rel="stylesheet">

<link rel="icon" href="{{ '/favicon.svg' | relative_url }}" type="image/svg+xml">

<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
{% feed_meta %}
</head>
6 changes: 4 additions & 2 deletions _sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,9 @@ code {
font-size: 15px;
border: 1px solid $grey-color-light;
border-radius: 3px;
background-color: #eef;
background-color: $code-bg-color; // dark code background
color: $text-color; // readable on dark bg
font-family: $code-font-family;
}

code {
Expand All @@ -140,7 +142,7 @@ code {

pre {
padding: 8px 12px;
overflow-x: scroll;
overflow-x: auto;

> code {
border: 0;
Expand Down
1 change: 1 addition & 0 deletions _sass/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
border-top: 5px solid $brand-color;
border-bottom: 1px solid $grey-color-light;
min-height: 56px;
background-color: $brand-color;

// Positioning context for the mobile navigation icon
position: relative;
Expand Down
5 changes: 0 additions & 5 deletions corpora.md

This file was deleted.

6 changes: 5 additions & 1 deletion css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ img.cltk_logo {


// Our variables
$base-font-family: Helvetica, Arial, sans-serif;
$base-font-family: 'Noto Serif', Georgia, serif;
$base-font-size: 16px;
$small-font-size: $base-font-size * 0.875;
$base-line-height: 1.5;
Expand All @@ -32,6 +32,10 @@ $content-width: 800px;
$on-palm: 600px;
$on-laptop: 800px;

// Code colors (dark mode)
$code-bg-color: hsl(225, 15%, 18%);
$code-font-family: 'Noto Sans Mono', 'SFMono-Regular', Consolas, Menlo, monospace;



// Using media queries with like this:
Expand Down
4 changes: 2 additions & 2 deletions docs.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: Legacy Docs (v0.1.x)
title: Docs
redirect_to:
- https://legacy.cltk.org
- https://docs.cltk.org
---
5 changes: 0 additions & 5 deletions docs_v10.md

This file was deleted.

Binary file removed favicon.ico
Binary file not shown.
42 changes: 42 additions & 0 deletions favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 21 additions & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,27 @@ layout: default

The Classical Language Toolkit (CLTK) is a Python library offering natural language processing (NLP) for the languages of pre–modern Eurasia. Pre-configured pipelines are available for 19 languages.

## Maintainers
- Install: `pip install "cltk[openai,stanza,ollama]"`
- Code: <https://github.com/cltk/cltk>
- Docs: <https://docs.cltk.org>

# Maintainers

* [Kyle P. Johnson](https://github.com/kylepjohnson)
* [Clément Besnier](https://github.com/clemsciences)

# Previous versions

Previous generations of the CLTK are not supported anymore, but for those needing to use or reference past versions, these are preserved.

## Versions `1.x`

- Install: `pip install cltk==1.5.0`
- Code: <https://github.com/cltk/cltk/tree/v1>
- Docs: <https://v1.cltk.org>

## Versions `0.x`

- Install: `pip install cltk==0.1.121`
- Code: <https://github.com/cltk/cltk/tree/v0>
- Docs: <https://v0.cltk.org>
5 changes: 0 additions & 5 deletions tutorials.md

This file was deleted.

5 changes: 0 additions & 5 deletions tutorials_10.md

This file was deleted.