diff --git a/res/META-INF/change-notes.html b/res/META-INF/change-notes.html
index 1a4fc50..1b37094 100644
--- a/res/META-INF/change-notes.html
+++ b/res/META-INF/change-notes.html
@@ -4,7 +4,7 @@
in the near future
Fix a bug in CubicalTT name resolution
- Add "Export Type Theory file to HTML" action in tool window
+ Add "Export to Clickable HTML" action in tool window
0.5.2
diff --git a/res/META-INF/description.html b/res/META-INF/description.html
index 104bb30..900a966 100644
--- a/res/META-INF/description.html
+++ b/res/META-INF/description.html
@@ -8,35 +8,34 @@
Features (listed for each supported language):
+ - Export supported language files as clickable HTML
+ - Running (type checking) your code in supported languages
+ - Live template contexts for supported languages
+ - Create and iconify files for supported languages
- Mini-TT:
-
- - Running (type checking) your code
+
- Mini-TT executable management
- - Live templates
+
- Folding code blocks and special symbols to unicode
- Syntax highlight, color settings page
- Rename
- Completion/find usages/goto declaration
- Commenter, brace matcher
- - Create and iconify files
- RedPRL:
- - Running (type checking) your code
- RedPRL executable management
- Folding code blocks
- - Live templates
+
- Rename
- Completion/find usages/goto declaration
- Syntax highlight, color settings page
- Commenter, brace matcher
- - Create and iconify files
- MLPolyR:
- - Running (type checking) your code
- MLPolyR executable management
- Folding code blocks
- Syntax highlight
@@ -44,69 +43,48 @@ Features (listed for each supported language):
- Rename
- Completion/find usages/goto declaration
- Commenter, brace matcher
- - Create and iconify files
- Vanilla Mini-TT:
- - Running (type checking) your code
- The
agdacore
executable management
- Folding code blocks and special symbols to unicode
- - Live templates
+
- Syntax highlight, color settings page
- Completion/find usages/goto declaration
- Rename
- Commenter, brace matcher
- - Create and iconify files
- Voile:
- - Running (type checking) your code
- - Live templates context
- Commenter, brace matcher
- Syntax highlight, color settings page
- Completion/find usages/goto declaration
- - Create and iconify files
- Agda:
- - Running (type checking) your code
- - Live templates
- Language injection in Strings
- Folding code blocks and layout blocks
- Dumb completion/goto definition
- Syntax highlighter, color settings page
- Commenter, brace matcher
- - Create and iconify files
- CubicalTT:
- - Running (type checking) your code
- - Live template contexts
- Executable (cubical) management
- Folding code blocks and imports
- Syntax highlighter, color settings page
- Completion/find usages/goto declaration
- Stub indices, goto symbol (search everywhere)
- Commenter, brace matcher
- - Create and iconify files
- YaccTT:
- - Running (type checking) your code
- - Live template contexts
- Executable (yacctt) management
- - Create and iconify files
-
-
- - OwO:
-
- - Live templates context
- - Create and iconify files
diff --git a/res/META-INF/plugin.xml b/res/META-INF/plugin.xml
index 31b7978..40e5013 100644
--- a/res/META-INF/plugin.xml
+++ b/res/META-INF/plugin.xml
@@ -228,7 +228,7 @@
diff --git a/src/org/ice1000/tt/action/html-export.kt b/src/org/ice1000/tt/action/html-export.kt
index 8451e2f..998f8c2 100644
--- a/src/org/ice1000/tt/action/html-export.kt
+++ b/src/org/ice1000/tt/action/html-export.kt
@@ -171,7 +171,7 @@ object HtmlExportSupport {
if (infoClasses != null) classes = infoClasses
val infoHref = info.href
val text = element.text
- if (intoHref == "??") {
+ if (infoHref == "??") {
title = "Failed to find the declaration of $text"
indicator.text = "Token $text (Failed)"
} else if (infoHref != null) {