|
| 1 | +<script setup lang="ts"> |
| 2 | +import FeaturesItem from './FeaturesItem.vue' |
| 3 | +</script> |
| 4 | + |
| 5 | +<template> |
| 6 | + <div class="features"> |
| 7 | + <FeaturesItem title="Organization"> |
| 8 | + Organize your snippets with multi-level folders and tags. Each snippet can |
| 9 | + contain multiple fragments (tabs), giving you fine-grained control over |
| 10 | + structure and grouping. |
| 11 | + </FeaturesItem> |
| 12 | + <FeaturesItem title="Editor"> |
| 13 | + Built on |
| 14 | + <AppLink href="https://github.com/codemirror/codemirror5"> |
| 15 | + CodeMirror |
| 16 | + </AppLink> |
| 17 | + with <code>.tmLanguage</code> grammars for syntax highlighting. |
| 18 | + <ul> |
| 19 | + <li> |
| 20 | + Supports over |
| 21 | + <AppLink |
| 22 | + href="https://github.com/github/linguist/blob/master/vendor/README.md" |
| 23 | + > |
| 24 | + 600 grammars |
| 25 | + </AppLink>, with 160+ available out of the box. |
| 26 | + </li> |
| 27 | + <li> |
| 28 | + Integrated |
| 29 | + <AppLink href="https://prettier.io"> |
| 30 | + Prettier |
| 31 | + </AppLink> for clean, |
| 32 | + consistent code formatting. |
| 33 | + </li> |
| 34 | + </ul> |
| 35 | + </FeaturesItem> |
| 36 | + <FeaturesItem title="Real-time HTML & CSS Preview"> |
| 37 | + Write and instantly preview HTML and CSS snippets. Perfect for |
| 38 | + prototyping, testing ideas, or quick visual checks. |
| 39 | + </FeaturesItem> |
| 40 | + <FeaturesItem title="Markdown"> |
| 41 | + Full Markdown support with syntax highlighting, tables, lists, and more. |
| 42 | + <ul> |
| 43 | + <li> |
| 44 | + Integrated |
| 45 | + <AppLink href="https://mermaid-js.github.io/mermaid/#"> |
| 46 | + Mermaid |
| 47 | + </AppLink> |
| 48 | + for dynamic diagrams and charts. |
| 49 | + </li> |
| 50 | + </ul> |
| 51 | + </FeaturesItem> |
| 52 | + <FeaturesItem title="Presentation Mode"> |
| 53 | + Turn a sequence of snippets into a presentation. Useful for classrooms, |
| 54 | + team meetings, conference talks, or simply walking through your own notes. |
| 55 | + </FeaturesItem> |
| 56 | + <FeaturesItem title="Mindmap"> |
| 57 | + Generate mind maps from Markdown. Fast, intuitive, and ideal for |
| 58 | + structuring and visualizing ideas. |
| 59 | + </FeaturesItem> |
| 60 | + <FeaturesItem |
| 61 | + title="Developer Tools" |
| 62 | + style="grid-column: 1 / 3" |
| 63 | + > |
| 64 | + Handy built-in utilities for everyday dev tasks: |
| 65 | + <ul> |
| 66 | + <li> |
| 67 | + <strong>Text Tools</strong>: Case Converter, Slug Generator, URL |
| 68 | + Parser |
| 69 | + </li> |
| 70 | + <li> |
| 71 | + <strong>Crypto & Security</strong>: Hash/HMAC, Password Generator, |
| 72 | + UUID |
| 73 | + </li> |
| 74 | + <li> |
| 75 | + <strong>Encoders/Decoders</strong>: URL, Base64, JSON ⇄ TOML/XML/YAML, |
| 76 | + Text ⇄ ASCII/Binary/Unicode, Color Converter |
| 77 | + </li> |
| 78 | + </ul> |
| 79 | + </FeaturesItem> |
| 80 | + |
| 81 | + <FeaturesItem title="JSON Visualizer"> |
| 82 | + Visualize and explore your JSON data with an interactive graph view. |
| 83 | + Perfect for quickly inspecting complex responses, APIs, or configuration |
| 84 | + files. |
| 85 | + </FeaturesItem> |
| 86 | + <FeaturesItem title="Integrations"> |
| 87 | + Extend your workflow with: |
| 88 | + <ul> |
| 89 | + <li> |
| 90 | + <AppLink |
| 91 | + href="https://marketplace.visualstudio.com/items?itemName=AntonReshetov.masscode-assistant" |
| 92 | + > |
| 93 | + VS Code Extension |
| 94 | + </AppLink>: zen mode snippet search, instant insertion, and save selected code |
| 95 | + as snippets. |
| 96 | + </li> |
| 97 | + <li> |
| 98 | + <AppLink href="https://www.raycast.com/antonreshetov/masscode"> |
| 99 | + Raycast Extension |
| 100 | + </AppLink>: quick snippet access directly from Raycast. |
| 101 | + </li> |
| 102 | + </ul> |
| 103 | + </FeaturesItem> |
| 104 | + <FeaturesItem title="Beautiful Screenshots"> |
| 105 | + Export snippets as polished images with customizable themes and |
| 106 | + backgrounds. |
| 107 | + </FeaturesItem> |
| 108 | + <FeaturesItem title="Localization"> |
| 109 | + massCode is available in Čeština, Deutsch, Ελληνικά, English, Español, |
| 110 | + French, 日本語, Português (Brasil), Română, Русский, Türkçe, Українська, |
| 111 | + 中文 (简体), 中文 (繁體) & 中文 (繁體 香港特別行政區) languages. |
| 112 | + </FeaturesItem> |
| 113 | + </div> |
| 114 | +</template> |
| 115 | + |
| 116 | +<style scoped> |
| 117 | +.features { |
| 118 | + padding: 24px 0; |
| 119 | + display: grid; |
| 120 | + grid-template-columns: repeat(3, 1fr); |
| 121 | + gap: 24px; |
| 122 | +} |
| 123 | +</style> |
0 commit comments