social.dk-libre.fr is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.

This server runs the snac software and there is no automatic sign-up process.

Search results for tag #markdown

🗳

[?]քʏʀǟȶɛɮɛǟʀɖ » 🌐
@pyratebeard@harbour.cafe

when reading READMEs or articles online do you prefer commands as inline code, e.g.`sudo`, or with man page section notation, e.g. sudo(8)?

Inline code, `sudo`:3
Man page section, sudo(8):0

Closes in 1:12:13:54

    AodeRelay boosted

    [?]GNU/Linux.ch » 🌐
    @gnulinux@social.anoxinon.de

    Trolle, Kobolde und Gnome: Hammer - Textverarbeitung für phantasievolle Geschichten

    Hammer ist eine (Markdown-)Textverarbeitung für umfangreiche Texte. Die Besonderheit: Es kann ein eigenes Nachschlagewerk gestaltet werden, sodass man den Überblick behält. Dazu kommen Anwendungen für alle Plattformen und ein Server für Vorab-Reviewer.

    gnulinux.ch/hammer-textverarbe

      AodeRelay boosted

      [?]wortezimmer » 🌐
      @wortezimmer@ruhr.social

      Seit das weltbeste aller Kochbücher, Floses Kochbuch, nicht mehr funktioniert, weil es nicht mehr gepflegt wird, bin ich auf der verzweifelten Suche nach einer neuen Software für meine Rezeptsammlung auf Linux.
      Kennt sich jemand mit Kookbook aus? Das geht über Markdown, und ich bin absoluter Markdown-Dummy.

        [?]Aral Balkan » 🌐
        @aral@mastodon.ar.al

        That feeling when your renderer can handle a component that outputs HTML inside link text in Markdown that’s embedded in HTML.

        (Yes, I’m bragging.)

        Screenshot: Detail of Helix editor show source code of Kitten example at ~/sandbox/layout-components: footer. component.js (another tab, types.d.ts, is visible but not active).

Highlighted code:

Powered with love by [Kitten <${kitten.icons.cat} weight=duotone size=1.5em style='vertical-align: bottom;'/>](https://kitten.small-web.org). 


Full (visible) code:

export default () => kitten.html`
  <footer>
    <markdown>
      Copyright (c) 2023-${new Date().getFullYear()}, Yours Truly.

      The content on this site is released under [Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/).

      The source code of this site is released under [GNU AGPL 3.0](https://www.gnu.org/licenses/agpl-3.0.en.html).

      Powered with love by [Kitten <${kitten.icons.cat} weight=duotone size=1.5em style='vertical-align: bottom;'/>](https://kitten.small-web.org). 
    </markdown>

        Alt...Screenshot: Detail of Helix editor show source code of Kitten example at ~/sandbox/layout-components: footer. component.js (another tab, types.d.ts, is visible but not active). Highlighted code: Powered with love by [Kitten <${kitten.icons.cat} weight=duotone size=1.5em style='vertical-align: bottom;'/>](https://kitten.small-web.org). Full (visible) code: export default () => kitten.html` <footer> <markdown> Copyright (c) 2023-${new Date().getFullYear()}, Yours Truly. The content on this site is released under [Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/). The source code of this site is released under [GNU AGPL 3.0](https://www.gnu.org/licenses/agpl-3.0.en.html). Powered with love by [Kitten <${kitten.icons.cat} weight=duotone size=1.5em style='vertical-align: bottom;'/>](https://kitten.small-web.org). </markdown>

        Screenshot: A generic web browser showing the render of a page in the sample Kitten site showing the footer rendered. It reads Powered with love by Kitten with a blue (link-coloured) Kitten icon next to the word Kitten (as a single link).

        Alt...Screenshot: A generic web browser showing the render of a page in the sample Kitten site showing the footer rendered. It reads Powered with love by Kitten with a blue (link-coloured) Kitten icon next to the word Kitten (as a single link).

          [?]Aral Balkan » 🌐
          @aral@mastodon.ar.al

          If I do say so myself, I do love expressive I can be with Kitten.

          This is me injecting raw HTML markup into a Markdown code block in a Kitten Markdown page to highlight specific lines in a code block¹.

          (The string interpolation of the HTML as an array is a hack that bypasses Kitten’s default sanitisation and should only be used with trusted content.)

          PS. I’m going through all the tutorials on the site to update them to reflect the current state of Kitten after the three-month breaking-change update I’ve been working on.

          ¹ kitten.small-web.org/reference

          2. The welcome message tells you that you can use the `.help` command for assistance. Run that and you will see a list that looks like the following:

    ```text
    .break      Sometimes you get stuck, this gets you out
    .clear      Alias for .break
    .editor     Enter editor mode
    .exit       Exit the REPL
    .help       Print this help message
    ${['<strong>']}.id         Show your Small Web place ID (and create it and your secret if necessary).${['</strong>']}
    .load       Load JS from a file into the REPL session
    ${['<strong>']}.ls         List keys of global kitten object.${['</strong>']}
    .save       Save all evaluated commands in this REPL session to a file
    ${['<strong>']}.settings   Display the Kitten Settings page link
    .sign-in    Display the Kitten sign-in page link
    .sign-out   Display the Kitten sign out page link
    .stats      Show current statistics on Kitten server${['</strong>']}
    ```
    <style inline>
      /* Highlight the Kitten-specific commands */
      @scope {
        code > strong {
          background-color: var(--focus);
        }
      }
    </style>

          Alt...2. The welcome message tells you that you can use the `.help` command for assistance. Run that and you will see a list that looks like the following: ```text .break Sometimes you get stuck, this gets you out .clear Alias for .break .editor Enter editor mode .exit Exit the REPL .help Print this help message ${['<strong>']}.id Show your Small Web place ID (and create it and your secret if necessary).${['</strong>']} .load Load JS from a file into the REPL session ${['<strong>']}.ls List keys of global kitten object.${['</strong>']} .save Save all evaluated commands in this REPL session to a file ${['<strong>']}.settings Display the Kitten Settings page link .sign-in Display the Kitten sign-in page link .sign-out Display the Kitten sign out page link .stats Show current statistics on Kitten server${['</strong>']} ``` <style inline> /* Highlight the Kitten-specific commands */ @scope { code > strong { background-color: var(--focus); } } </style>

            mmu_man boosted

            [?]France Pasquale 📷 🦻 :antifa: :no_ai: » 🌐
            @pasqualeberesti@piaille.fr

            Pendant mes vacances, j'ai utiliséu pour la première fois de ma vie le format
            Habituellement, pour des prises de notes, j'utilise BBEdit, la Rolls de l'éditeur de textes si vous voulez mon avis. Mais en déplacement, j'avais pas mon ordinateur, donc j'ai pris des notes (mes dépenses) avec un fichier .md sur , et ça marche super bien, j'adore.
            Autant, l'ouvrir avec BBEdit sur mon Mac est possible, et il colorie une partie du texte, autant, ce n'est pas très "user friendly".
            Auriez-vous une recommandation d'un logiciel qui permet d'ouvrir ces fichiers sur ?

            Merci 🙏

              [?]R.L. Dane :Debian: :FreeBSD: :OpenBSD: :NetBSD:🍵 :MiraLovesYou: [he/him/my good fellow] » 🌐
              @rl_dane@polymaths.social

              @ChuckMcManis

              Markdown is only supported in the Hometown and GlitchSocial forks of Mastodon. Vanilla Mastodon will probably never have it, because they're going for that classic Twitter UX, for better or for worse.

              Many non-Mastodon fedi servers like #GtS and #snac2 support #Markdown.

              I don't know about Friendica, *oma, and *key, though.

                AodeRelay boosted

                [?]GNU/Linux.ch » 🌐
                @gnulinux@social.anoxinon.de

                MarkText - Ein guter Markdown-Editor

                Der Markdown-Editor "MarkText" ist eine gute Wahl, wenn man ablenkungsfrei schreiben möchte und eine WYSIWYG-Ansicht bevorzugt. Dieser Editor eignet sich auch gut für das Schreiben von Artikeln für GNU/Linux.ch

                gnulinux.ch/marktext-ein-guter

                  3 ★ 4 ↺

                  [?]oldsysops » 🌐
                  @oldsysops@social.dk-libre.fr

                  un truc que j'aime bien au boulot: notre documentation sécurité est versionné dans en . on fait des PR avec relecture pour validation et le git log alimente le versionning du document.
                  un job jenkins créé les fichiers pdf et html grace à et et déploie les fichiers à la bonne place...

                  J'aimerais dire que j'ai un quelconque mérite dans le process, mais je peut juste dire que j'ai des collègues formidables !!

                    AodeRelay boosted

                    [?]GNU/Linux.ch » 🌐
                    @gnulinux@social.anoxinon.de

                    Funktionen des Nextcloud-Editors nutzen

                    Der Nextcloud-Text-Editor beherrscht eine Reihe von Zusatzfunktionen, die oft übersehen werden. Sie können sich aber als recht nützlich im Alltag erweisen. Infoboxen, Inhaltsverzeichnis-Anzeige, einklappbare Absätze und mehr wird geboten.

                    gnulinux.ch/funktionen-des-nex

                      [?]slackline :emacs: :orgmode: » 🌐
                      @slackline@mastodon.social

                      @cleder Thanks, have just created a PR to add a few more.

                        [?]Jan Wildeboer 😷:krulorange: » 🌐
                        @jwildeboer@social.wildeboer.net

                        When I want to spin up my own instance that supports when composing a post and that can handle my significant amount of followers with a seamless migration from my current instance, which Implementation would you use? Ideally it should be a simple rootless container setup that JustWorks™ with podman. Perfection would be a single, self-contained container without the need to spin up several ones for databases or other stuff.

                          [?]Jan Wildeboer 😷:krulorange: » 🌐
                          @jwildeboer@social.wildeboer.net

                          support for composing a post in is the Duke Nukem Forever of the

                            [?]Jan Wildeboer 😷:krulorange: » 🌐
                            @jwildeboer@social.wildeboer.net

                            Wouldn’t it be nice to add support next year in April, dear @MastodonEngineering ? At the 10th anniversary of this issue [1]? That would be grand!

                            [1] github.com/mastodon/mastodon/i

                              [?]Jan Wildeboer 😷:krulorange: » 🌐
                              @jwildeboer@social.wildeboer.net

                              Just **testing** if [Mastodon 4.6](joinmastodon.org) has added a tiny bit of support when composing a post. `Nope.` Well. Maybe next year :)

                                AodeRelay boosted

                                [?]BlablaLinux » 🌐
                                @blablalinux@mastodon.blablalinux.be

                                Bonne nouvelle ! J'ai réactivé sur mon infrastructure.

                                Tu peux dès maintenant utiliser cet éditeur collaboratif sans même avoir besoin de créer un compte : hedgedoc.blablalinux.be/.

                                Et si tu as envie de découvrir mes autres outils, tout est listé sur ma page de services publics : blablalinux.be/mes-services-pu.

                                  AodeRelay boosted

                                  [?]LinuxNews.de » 🌐
                                  @linuxnews@social.anoxinon.de

                                  AodeRelay boosted

                                  [?]LinuxNews.de » 🌐
                                  @linuxnews@social.anoxinon.de

                                  AodeRelay boosted

                                  [?]Bluelupo » 🌐
                                  @bluelupo@social.tchncs.de

                                  [?]Gabriel M. Dutra » 🌐
                                  @dutra@mastodon.bsd.cafe

                                  I built sn — a notes app that lives entirely in the terminal.

                                  What it does:
                                  • Browse notes in a split-panel interface
                                  • Preview Markdown with formatting

                                  Built with Rust and Ratatui.
                                  Open source. Simple. Fast. No GUI required.

                                  github.com/nulldutra/sn

                                    taziden boosted

                                    [?]Neil Brown [he/him/his] » 🌐
                                    @neil@mastodon.neilzone.co.uk

                                    Neil: There's a wealth of amazing Free software out there! I use loads of it.

                                    Them: What do you use to write documents?

                                    Me: I use vim. I write in Markdown, then convert it. (typst + pandoc)

                                    Them: What about presentations?

                                    Me: I use vim. I write in Markdown, then convert it. (revealjs)

                                    Them: Your website? Blog?

                                    Me: I use vim. I write in Markdown, then convert it. (mkdocs / bssg)

                                    Them: So what about keeping notes?

                                    Me: Oddly enough, I use vim. I write in Markdown... (vimwiki)

                                      Erwan 🚄 boosted

                                      [?]Luc, prolétaire caniculé » 🌐
                                      @framasky@framapiaf.org

                                      RE: phpc.social/@dokuwiki/11656329

                                      Énorme changement à venir pour Dokuwiki : le support du markdown !
                                      Le meilleur wiki va devenir encore meilleur ! ❤️

                                      JP Mens boosted

                                      [?]DokuWiki » 🌐
                                      @dokuwiki@phpc.social

                                      Probably the biggest change to DokuWiki in two decades is coming: native Markdown support.

                                      patreon.com/posts/dokuwiki-sup

                                        Fipaddict, boosted

                                        [?]Parleur » 🌐
                                        @parleur@mastodon.parleur.net

                                        Gnnn, screugneugneu.

                                        Je suis en train d'essayer enfin sérieusement .

                                        J'ai un grand tableau en à modifier.

                                        Mais la largeur d'affichage par défaut n'est pas assez importante pour le voir en entier.

                                        Et je ne trouve pas où la changer.
                                        Vous sauriez me dépanner pour ça ? 🤔

                                        [MàJ :] Trouvé !

                                        Dans les paramètres, onglet « Éditeur », section « Affichage », décocher « Longueur de ligne lisible ».

                                        Alt...Dans les paramètres, onglet « Éditeur », section « Affichage », décocher « Longueur de ligne lisible ».