"use strict"; // P A C K A G E // const dedent = require("dedent"); const fs = require("graceful-fs"); const html = require("choo-async/html"); const raw = require("nanohtml/raw"); // E X P O R T module.exports = exports = () => async () => html`
${step1()} ${step2()} ${step3()}
`; function step1() { /** Step 1 loading steps: - exampleCode !== ""
- isLoading
- jsonData

Success! Here is the response for lbry://{{ address }}:

Go to next step - TODO: Create message for error */ return html`

Learn the LBRY protocol by examples

Let's start by getting the associated metadata for a claim.

lbry://

…or select a live example from below

It's a Disaster

Unbubbled with Jamie King, Ep1.1 — Bitcoin, Boom or Bust

FORTNITE TOP STREAM MOMENTS — Nickatnyte & GamingwithMolt

LBRY Coin (LBC) GPU Miner for AMD and NVIDIA

`; } function step2() { /** Step 2 loading steps: ... */ const images = [ { src: "../carlsagan2.jpg", alt: "Carl Sagan" }, { src: "../doge-meme.jpg", alt: "Doge" }, { src: "../lbry-green.png", alt: "LBRY Logo With Green Background" } ]; const renderedImages = []; for (const image of images) { renderedImages.push(`${image.alt}`); } return html` `; } function step3() { // }