Einbetten von externem Markdown

Use Case

  1. A software project maintains its documentation in a Git repository.
  2. The master version of a file is the canonical version of this documentation
  3. We want to use Discourse to facilitate collaborative edition and criticism of the living document

Approach

  1. Copy the link to the raw markdown file from the Git repository, e.g., https://git.example/org/documentation/raw/master/INSTALL.md in the new topic title field
  2. Discourse retrieves title and markdown content that becomes topic content
  3. Discourse watches for changes and rebuilds HTML when needed, maintaining versions

Then the readers always have access to the latest markdown version in Git, while editors can use the power of Discourse to discuss changes.

Down the road

When ActivityPub support is added to Discourse and Git (via ForgeFed), this type of integration can be expanded to include cross-application document synchronization, without the need to know about Git.

The first step is to “onebox” external markdown. This would as well allow to integrate with a static blog directly from it’s Git repository, consolidating the publication process (i.e., by generating topics matching static pages at publication time)


What current solutions (API calls?) exist to do this besides embedding comments on the static page? How far from embed.js would that lead us?

Er what? Why not just have a link to it in the first post, and the discussion in the replies?

Alternately you could whitelist an <iframe> if you are dead set on having a live view of a remote doc.

1 „Gefällt mir“

You cannot que not use any other Discourse feature on a link. The idea is to integrate the content, not just link to it.

Why not have native markdown instead? JavaScript can do that, right?

Just thinking ahead of the ActivityPub support: if instances can already have a mechanism to relay existing content from one another, it all gets easier to follow a single topic across instances, and to generate static sites from Discourse topics.

Why not do it the other way around? Have the first post be a wiki and it is the source of truth and sync those revisions with GitHub?

1 „Gefällt mir“

Wie würden Sie vorgehen, um Revisionen automatisch mit GitHub zu synchronisieren? Könnten Sie mir bitte eine kurze Vorstellung davon geben, was Sie im Sinn haben?

Ich würde dafür das discourse_api gem verwenden:

  1. Richten Sie eine Crontab ein, um gewünschte Themen (und Beiträge) auf Änderungen zu überwachen.
  2. Immer wenn eine Änderung auftritt, laden Sie die neueste Version in ein Git-Repository herunter (z. B. eine statische Website) und committen Sie diese. Sie würden entweder die ursprüngliche Markdown-Version des Beitrags (post_id.md) oder die für HTML aufbereitete Version herunterladen (in diesem Fall müssten Sie jedoch die URIs umschreiben, um sicherzustellen, dass alle absolut sind und somit das Protokoll und den Hostnamen der Discourse-Instanz enthalten).

Die API-Dokumentation ist ebenso nützlich wie das examples-Verzeichnis im gem.

2 „Gefällt mir“