#typescript#editor#gfm#javascript#markdown#markdown_editor#milkdown#prosemirror#remarkjs#rich_text_editor#typescript#wysiwyg#wysiwyg_editor
Milkdown is a flexible, open-source editor that lets you write and edit Markdown in a simple, visual way, just like you see it in apps such as Typora. It is built using powerful tools like ProseMirror and Remark, and everything in Milkdown works as a plugin, so you can add or remove features easily. You can customize its look and feel to match your app, and it supports real-time collaboration for team editing. This means you get a reliable, easy-to-use editor that fits your needs and grows with your projects, making writing and sharing documents smoother and more efficient[1][2][4].
https://github.com/Milkdown/milkdown
🚀 Вышел стабильный JavaScript движок от Google для Android
Новая стабильная библиотека Jetpack JavaScript Engine позволит разработчикам выполнять JS код в изолированной и ограниченной среде.
class MainActivity : ComponentActivity() {
// Теперь nullable, без lateinit
private var jsSandbox: JavaScriptSandbox? = null
private var jsIsolate: JavaScriptIsolate? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
if (!JavaScriptSandbox.isSupported()) {
Log.e("JS", "JavaScriptSandbox не поддерживается")
return
}
lifecycleScope.launch {
// Создаём и сохраняем в nullable-поле
jsSandbox = JavaScriptSandbox
.createConnectedInstanceAsync(applicationContext)
.await()
jsIsolate = jsSandbox?.createIsolate()
// При выполнении гарантируем, что jsIsolate != null
val result: String = jsIsolate
?.evaluateJavaScriptAsync(JS_SCRIPT_SCRING)
?.await()
?: "Ошибка: isolate не инициализирован"
Log.d("JS", "Результат выполнения: $result")
}
}
override fun onDestroy() {
super.onDestroy()
// Закрываем только если не null
jsIsolate?.close()
jsSandbox?.close()
}
}
#jetpack#js