Skip to content

Instantly share code, notes, and snippets.

@takoikatakotako
Created October 24, 2024 00:46
Show Gist options
  • Select an option

  • Save takoikatakotako/763cf0eaff8de33c14b3db0b6ad50842 to your computer and use it in GitHub Desktop.

Select an option

Save takoikatakotako/763cf0eaff8de33c14b3db0b6ad50842 to your computer and use it in GitHub Desktop.
変数に格納したマークダウンを表示する
import SwiftUI
struct ContentView: View {
let markdownText: String = "**Snorlax** is the **most** cute pokemon!\n[About Snorlax](https://en.wikipedia.org/wiki/Snorlax)"
var body: some View {
Text(LocalizedStringKey(markdownText))
}
}
#Preview {
ContentView()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment