11 Matching Annotations
  1. Sep 2023
  2. May 2023
  3. Mar 2023
    1. Is there a way to collapse all headings at once? .t3_11lgicl._2FCtq-QzlfuN-SwVMUZMM3 { --postTitle-VisitedLinkColor: #9b9b9b; --postTitleLink-VisitedLinkColor: #9b9b9b; --postBodyLink-VisitedLinkColor: #989898; }

      I don't think it requires a plugin, but you can go to Settings >> Hotkeys and search for "fold" to create/change custom hotkey settings to fold up/down as necessary.

      Another approach with a potentially similar affordance: Obsidian has a core plugin called "Outline" that you can enable. Then open the palette to search/select: "Outline: Show Outline" which will display in a sidebar (you can drag/drop it where you find most convenient). This side outline will allow you to easily jump around your document for various views as well as show you the overarching outline while you're working on a document. It will also allow you to conveniently collapse parts of the outline too.

  4. Dec 2022
  5. Nov 2022
    1. The presence of an Age header field implies that the response was not generated or validated by the origin server for this request. However, lack of an Age header field does not imply the origin was contacted, since the response might have been received from an HTTP/1.0 cache that does not implement Age

      Age

  6. Sep 2022
  7. Jun 2021
  8. Sep 2019
  9. Apr 2019
  10. Sep 2018
    1. // Download a json but don't reveal who is downloading it fetch("sneaky.json", {referrerPolicy: "no-referrer"}) .then(function(response) { /* consume the response */ }); // Download a json but pretend another page is downloading it fetch("sneaky.json", {referrer: "https://example.site/fake.html"}) .then(function(response) { /* consume the response */ }); // You can only set same-origin referrers. fetch("sneaky.json", {referrer: "https://cross.origin/page.html"}) .catch(function(exc) { // exc.name == "TypeError" // exc.message == "Referrer URL https://cross.origin/page.html cannot be cross-origin to the entry settings object (https://example.site)." }); // Download a potentially cross-origin json and don't reveal // the full referrer URL across origins fetch(jsonURL, {referrerPolicy: "origin-when-cross-origin"}) .then(function(response) { /* consume the response */ }); // Download a potentially cross-origin json and reveal a // fake referrer URL on your own origin only. fetch(jsonURL, {referrer: "https://example.site/fake.html", referrerPolicy: "origin-when-cross-origin"}) .then(function(response) { /* consume the response */ });