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

Correct key-feature icons. #433

Merged
merged 1 commit into from
Jul 26, 2021
Merged
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
14 changes: 7 additions & 7 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -829,33 +829,33 @@
],
"key_features": [
{
"icon": "feature-interactive",
"icon": "interactive",
"title": "Interactive",
"content": "Common Lisp has a full featured REPL, development can happen as a 'conversation' with the system."
},
{
"icon": "feature-inspectable",
"icon": "documentation",
"title": "Inspectible",
"content": "Common Lisp is fully inspectable with built-in functions for exploring every part of the language."
},
{
"icon": "feature-homoiconicity",
"icon": "homoiconic",
"title": "Homoiconicity",
"content": "Code has the same structure as data, allowing for powerful macros: code that writes code."
},
{
"icon": "feature-extensible",
"icon": "extensible",
"title": "Extensible",
"content": "Generic functions, reader-macros, and flexible namespacing allow for the extension of the language"
},
{
"icon": "feature-standardized",
"icon": "stable",
"title": "Standardized",
"content": "The language is very stable, with multiple implementations to match your needs – JVM, embedded, etc."
},
{
"icon": "feature-multiparadigm",
"title": "Multiparadigm",
"icon": "multi-paradigm",
"title": "Multi-paradigm",
"content": "Whether you prefer a functional style or something more object-oriented, Lisp adapts to your needs."
}
],
Expand Down