How to prompt LLM to get a proper article?
How to prompt LLM to get a proper article?
Write a CommonMark-formatted post matching this structure: multi-section with headings, paragraphs, quoted stats and sources, and a final conclusions section; include inline links in parentheses after citations, in the form ([Wikipedia][1]), and list all referenced URLs at the end under a "Sources" heading; keep tone neutral, preserve original claims but cite sources, and output only the Markdown.
[1]: https://en.wikipedia.org/wiki/Main_Page
what are the usual ways of using references in commonmark markdown?
Here is a summary of the usual ways of using references (reference-style links) in CommonMark (standard Markdown). This lets you separate link text from link destinations, making source text cleaner and easier to maintain.
🔹 Main reference-link syntax in CommonMark
Link reference definitions
You first define a “label → URL (and optional title)” somewhere in the document (before or after links that use it). The general form is:
[my-label]: https://example.com/ "Optional title":), then the URL (destination), optionally a title in quotes. (spec.commonmark.org)Using the references in link text
Once defined, you can use these references elsewhere as follows:
[Link text][my-label]my-label. (spec.commonmark.org)[my-label][][my-label]Precedence and corner cases
[text](URL "title")) take precedence over reference links. So if you write[foo](), even iffoohas a reference definition, that will be treated as empty inline link, not reference link. (spec.commonmark.org)✳️ Why / When It’s Useful
✅ Example of a full pattern
Here’s a small example combining definitions and use:
Here’s an introduction to [Markdown documentation][cm]. More reading: see [CommonMark spec][cm]. [cm]: https://spec.commonmark.org/0.29/ "CommonMark — Specification"This will render two identical links (“Markdown documentation” and “CommonMark spec”) both pointing to the same URL, with title attribute “CommonMark — Specification.”