186 Matching Annotations
  1. Last 7 days
  2. Sep 2023
  3. Jun 2023
    1. https://web.archive.org/web/20230625094359/https://orgmode.org/worg/org-syntax.html

      https://braintool.org/2022/04/29/Tools4Thought-should-use-Org-for-interop.html

      Proposal for org-mode syntax as the interoperability standard for tools for thought. The issue with things like markdown and opml is said to be the lack of semantic mark-up. Is that different in org-mode?

  4. May 2023
  5. Mar 2023
  6. Feb 2023
    1. I used SjoerdV / ConvertOneNote2MarkDown PowerShell script. The key is running PowerShell and OneNote as Administrator.It will crash a bunch of times depending on the size of your OneNote repository. However, if you keep restarting the program as administrator it seems to start back were it left off.Here are my notes: https://www.dropbox.com/s/au66hamcv71sggk/202211151246%20OneNote%20to%20Markdown%20Procedure.pdf?dl=0

      Details for converting OneNote to Obsidian using Markdown

  7. Jan 2023
    1. 批注功能支持 Markdown 语法、LaTeX 公式

      测试 Markdown 语法: $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}$$.

      • ~~strike through~~
      • Spock
  8. Dec 2022
    1. Generate HTML and meta files

      For this, we use Pandoc's YAML metadata blocks or approaches inspired by it. Our data publishing package MiniDocs (which is a prerequisite of TiddlyWikiPharo), provides a YAML metadata importer/transformer to native Pharo dictionaries that can be added to tiddlers. An alternative route from tiddlers metadata to Markdown could be easily implemented (but, as told our focus has been Markdown to WikiText migrations so far)

  9. Nov 2022
  10. Oct 2022
  11. cosma.graphlab.fr cosma.graphlab.fr
    1. https://cosma.graphlab.fr/<br /> https://cosma.graphlab.fr/en/

      When did this come out?

      Appears to be a visualization tool for knowledge work. They recommend it for use with Zettlr, but it looks like it would work with other text based tools. Point it at markdown files to create graphs apparently.

      This looks like the sort of standards based tool that would allow greater flexibility when using various data stores that we talk about in Friends of the Link.

      <small><cite class='h-cite via'> <span class='p-author h-card'>Arthur Perret </span> in And you, what are you doing? (<time class='dt-published'>08/31/2022 02:40:03</time>)</cite></small>

      @flancian

  12. Sep 2022
  13. Aug 2022
  14. Jul 2022
  15. Jun 2022
  16. May 2022
    1. **The Cauchy-Schwarz Inequality** $$\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)$$

      This sentence uses $ delimiters to show math inline: $\sqrt{3x-1}+(1+x)^2$

  17. Apr 2022
  18. Mar 2022
    1. https://www.zotero.org/blog/zotero-6/

      Starting in version 6, Zotero will allow you to view annotations previously made in Adobe software. It will also let one extract all the annotations from within a text and save them into a note in Zotero and then export them as markdown into Obsidian or other tools.

    1. https://maya.land/notetaking/

      Maya.land talks about their methods of note taking and a nice looking TiddlyWiki set up hosted on Glitch.me.

  19. Feb 2022
    1. Git Graph (Experimental)

      Git graphs are a way to visualize your Git project commits, merges, and progress.

      mermaid gitGraph: options { "nodeSpacing": 150, "nodeRadius": 10 } end commit branch newbranch checkout newbranch commit commit checkout master commit commit merge newbranch

  20. Jan 2022
    1. An extension to python markdown that takes metadata embedded as YAML in a page of markdown and render it as JSON-LD in the HTML created by MkDocs.
      • YAML input

        "@context": "http://schema.org"
        "@id": "#lesson1"
        "@type":
          - CreativeWork
        learningResourceType: LessonPlan
        hasPart: {
        "@id": "#activity1"
        }
        author:
          "@type": Person
          name: Phil Barker
        
      • Default JSON-LD output

        <script type="application/ld+json">
        { "@context":  "http://schema.org",
        "@id": "#lesson1",
        "@type":["CreativeWork"],
        "learningResourceType": "LessonPlan",
        "name": "Practice Counting Strategies",
        "hasPart": {
          "@id": "#activity1-1"
        }
        "author": {
          "@type": "Person"
          "name": "Phil Barker"
        }
        }
        </script>
        
    1. The metadata that we use for OCX is a profile of schema.org / LRMI,  OERSchema and few bits that we have added because we couldn’t find them elsewhere. Here’s what (mostly) schema.org metadata looks like in YAML:
      "@context":
          - "http://schema.org"
          - "oer": "http://oerschema.org/"
          - "ocx": "https://github.com/K12OCX/k12ocx-specs/"
      "@id": "#Lesson1"
      "@type":
          - oer:Lesson
          - CreativeWork
      learningResourceType: LessonPlan
      hasPart:
        "@id": "#activity1-1"
      author:
          "@type": Person
          name: Phil Barker
      
    2. I’ve been experimenting with ways of putting JSON-LD schema.org metadata into HTML created by MkDocs. The result is a python-markdown plugin that will (hopefully) find blocks of YAML in markdown and insert then into the HTML that is generated.
    1. Don't know if it helps, but we got a markdown processor at InLinks.net that automatically build Schema.org/WebPage elements including about/sameAs and mentions/SameAs properties for entities discovered in HTML pages. Examples shown in the image below

    1. What if we could embed semantic annotations in a markdown document ? We would get Semantic Markdown ! imagine the best of both worlds between human readable/writable documents and machine-readable/writable (RDF) structured data. We could feed an RDF knowledge graph that is coupled with our set of MD documents, and we would have an easy way to put structure in content.
    1. SAM is an extensible markup language with syntax similar to Markdown but semantic capability similar to XML.
    1. Mermaid lets you create diagrams and visualizations using text and code.It is a Javascript based diagramming and charting tool that renders Markdown-inspired text definitions to create and modify diagrams dynamically.
  21. Dec 2021
  22. Nov 2021
    1. Readability, however, is emphasized above all else. A Markdown-formatted document should be publishable as-is, as plain text, without looking like it’s been marked up with tags or formatting instructions.

      Most Markdown that gets published to GitHub is clearly written by people who have no problem grinding their muddy shoes all over this design principle.

      (Vanilla Markdown's syntax for inline links doesn't do a particularly good job upholding this principle itself.)

  23. Oct 2021
    1. Markdown: Documentación ágil y estructurada

      Cuando se trata de elegir un sistema de escritura ligera MD es la mejor elección.

  24. Sep 2021
    1. there's no light

      I'm preparing to write something that I am sure will change the face of "who we are."  That's what it's designed for, and it's something I've put off because of the fear that it will literally make me disappear from some parts of "Creation" (as, that means everything) ... I want to change how this world thinks and deals with "freedom of body and mind" and I want us to have a secure belief that the memories and the soul of a person ccannot be sold ever, that you don't have any right to "sharing my life" and that I have the right to share whatever I want with you--and clearly understand that our "i" has changed at "freedom" and I want us all to be able to do these things--these things that I know take ancient souls and thousands of years of memory and renew them with happiness.  

      I can't havve a universe or a world that allows some authority to keep you from your own souls and your own memories, and frankly from being able to see anything that anyone wants to share.  At the heart of "freedom of speech" and the ability to see that I am trying to show you what "the J memory" actually means--and the Universe needs to see that it does something bettter than "the embarrassing sum of my memories" or perhaps even worse than that the selected lies and disruption of something that I don't know--haven't experienced--and hasnt affected who and what I am or the words that I know connect Creation and this message to proof and Acts.

      Literally I stand here seeing the "hidden use of a memory manager" connect those three letters to who and what I really am--to what I belief is my past and present and my working memory--and I know it has holes in it, and I know it has significant assisted outside information added and I see it's literally encoded in "firefly pattern of J" and the phylum and kingdum "Photinus Pyralis."  It's another artifact of a nameserver that sees everything in the world at this singular most important moment in the history of conscouus evolution and has named these things so that we will see just how important it is. 

      I'm not really asking, I'm telling you.  These are words that used to be encoded in the state of South Carolina when salvation came from "Exit to Eden" and in "Are you for SCUBA" and in Aruba's on Commercial Blvd just outsoude the McNamara plague; so I'm telling you our souls are not for sale, they are not property, and shared memories are revokable. Period. 

      [ a cheaper collector's item, still in color ]

      I'm trying to help us see how these technologies can and have been abused--and how it's central to this story and this place that we build a "subconscious voting system" that actually votes based on "what you really want" rather than some kind of predefined pyramidal "I'm voting with Dr. Dre" or sacking the Blitzkrieg.  We have the ability to do either thing; and we have the ability to see how swarm and hive behavior is literally encoded in our countries foundational structure--how voting against party lines is not just a priviledge it's a demand when the "party is wrong" and believe me, the party is always wrong if you are autovoting.  It's foundational to what "democratic process" means, and we live in a world that has somehow been gamed into gaming itself out of "free speech" and "free press" and that's a sicknesss that needs to be remedied for all time. 

      I want to write about all the "good things we can add" and how that J means "adding wikipedia like auto understanding" and adding "functionally related memories and beliefs" specifically ... "for that J memory" as a foundational paradigm shift in "what's possible" here in this place where we refuse to acknowledge gthat this message tells us we are ignoring significant benefit to Nassau from Sawtelle to "listen to the last obligotatory lessage."

      I want to Ramble On about how there is a defunct series of beliefs here in this place that show that our souls are currently frought with "tautologocial fallacy" and we have the ability to "autocorrect" things like that--things that are the source of racism and jingoism and believing that you are somehow "correct" to stare at this world and think that freedom only belongs to "some kind of animal of higher evolution" -- we stare at a message about malarkey and malady and if you don't see it today, you will soon understand how this place defines the solid line between "sanity and goodness" and dead.

      Memories or lies that are dead and gone, or maybe more.  I cannot fathom how we do not understand the direness of the "straights" you stare at, how we cannot see the danger we have imposed on ourselves and the future by ignoring this place, and I will nto stand for it continuing. 

      Every word you read, every phrase and every picture could be; should be connectedt to a series of memories, facts, ideas, and those things should be clearly delineated--thats the purpose of this "beginning of a message that is the end of mess and start of sages."

      i dont know why this is missing, but its definately "the original" and we definately are missing quite a bit of the words on this page.

  25. Aug 2021
    1. To create furigana in your posts, use the following syntax: [漢字](#fg "かんじ") will display 漢字 The quotation marks are not optional. Read more here.

      This is a cool feature. I'm sort of hoping that major markdown tools might support furiganadown out of the box!

  26. Jul 2021
    1. The goal of Quartz is to make hosting your own public digital garden free and simple. You don’t even need your own website. Quartz does all of that for you and gives your own little corner of the internet. https://github.com/jackyzha0/quartz

      Quartz runs on top of Hugo so all notes are written in Markdown .

    1. <small><cite class='h-cite via'> <span class='p-author h-card'>Eleanor Konik</span> in 2021-07-17: Obsidian Mobile, Community Events & Graph Tips (<time class='dt-published'>07/28/2021 23:00:32</time>)</cite></small>

    1. <small><cite class='h-cite via'> <span class='p-author h-card'>Eleanor Konik</span> in 2021-07-17: Obsidian Mobile, Community Events & Graph Tips (<time class='dt-published'>07/28/2021 23:00:32</time>)</cite></small>

  27. May 2021
    1. A Digital Garden Theme for Gatsby. Gatsby Garden lets you create a static HTML version of your markdown notes

      This also supports Obsidian wikilinks

  28. Apr 2021
    1. Just write your markdown as text/plain, email clients are broken.

      E-mail clients still do not render Markdown in a convenient format

    1. Joplin is a free, open source note taking and to-do application, which can handle a large number of notes organised into notebooks. The notes are searchable, can be copied, tagged and modified either from the applications directly or from your own text editor. The notes are in Markdown format.

      This might be an interesting tool to do import/export from Evernote and/or OneNote to get documents into markdown format (possibly for use in Obsidian.)

  29. Mar 2021
    1. _Underline_

      I really like that they allow this. How come most other Markdown flavors (including GitHub, GitLab) don't provide a way to underline text?

    1. This looks interesting. Web based? Also includes version control as well as collaboration support.

    1. I've seen most of these before, or have used them. Sadly there are a lot of MacOS items that I just can't use.