fixing a bunch of broken stuff I think
This commit is contained in:
parent
0dbc3ead0e
commit
8bace887a2
1551 changed files with 299 additions and 57481 deletions
|
@ -1 +0,0 @@
|
|||
<!-- SC_OFF --><div class="md"><p>I'm doing some recreational writing using org-mod. I like it so far. Great. I think I've gotten best results using pandoc to create a PDF, but the results are beautiful. I could do the same from within emacs I'm sure.</p> <p>I have one file per chapter, which is natural and works for me. I can maybe be dissuaded. I think every file wants a `#+TITLE:`, at least because pandoc requires it or complains. If I output "one chapter" (file), everything looks great. The (chapter) title looks just the way I like it.</p> <p>If I do the following with pandoc:</p> <pre><code>pandoc -s *.org -o my_book.pdf </code></pre> <p>The <em>problem</em> is that the titles of the chapters end up all mashed together at the top of the document. Everything is more or less perfect.</p> <p>Should I maybe just not do this and manage this as one big doc, using hideability to deal with the unwieldiness? I could be convinced.</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/captainmidday"> /u/captainmidday </a> <br/> <span><a href="https://www.reddit.com/r/orgmode/comments/po91dx/writing_prose_a_book_in_orgmode_one_file_per/">[link]</a></span>   <span><a href="https://www.reddit.com/r/orgmode/comments/po91dx/writing_prose_a_book_in_orgmode_one_file_per/">[comments]</a></span>
|
|
@ -1,3 +0,0 @@
|
|||
<img src="https://media.babylonbee.com/thumbs/article-9556-1-thumb.jpg"> <p>NASHVILLE, TN—Christian entertainment company 4HisGlory Amusements has announced an exciting new escape room experience based on Calvinist theology. Participants will be entirely unable to do anything to escape the room and instead must wait for an actor playing Jesus to unlock the door and let them out.</p>
|
||||
<p>The post <a rel="nofollow" href="https://babylonbee.com/news/new-calvinist-escape-room-has-participants-do-nothing-while-they-wait-for-jesus-to-let-them-out">New Calvinist Escape Room Has Participants Do Nothing While They Wait For Someone To Let Them Out</a> appeared first on <a rel="nofollow" href="https://babylonbee.com">The Babylon Bee</a>.</p>
|
||||
|
|
@ -1 +0,0 @@
|
|||
<!-- SC_OFF --><div class="md"><p>Okay , it used to work falwlessly ...but now throwing an error while invoking... I understand , you will say, "what changes since then?" ...a lot ..not sure which one is bugging this ...but the code and output text are below ...take a peek :</p> <p><strong>capture template code:</strong></p> <p>.........</p> <p><code>("b" "Books" entry (file "~/.emacs.d/OrgFiles/books.org"</code></p> <p><code>"* %(let* ((url (substring-no-properties (current-kill 0)))</code></p> <p><code>(details (org-books-get-details url)))</code></p> <p><code>(when details (apply #'org-books-format 1 details)))")</code></p> <p>​</p> <p>Now here is the output I am getting once select/press "b" from capture menu ...in the capture buffer it is showing this :</p> <p><code>%![Error: (void-function org-books-get-details)]</code> </p> <p>​</p> <p>Now, here is the actual code in the <strong>org-books.el :</strong></p> <p><code>(defun org-books-get-details (url)</code></p> <p><code>"Fetch book details from given URL.Return a list of three items: title (string), author (string) andan alist of properties to be applied to the org entry. If the url is not supported, throw an error."</code></p> <p><code>(let ((output 'no-match)</code></p> <p><code>(url-host-string (url-host (url-generic-parse-url url))))</code></p> <p><code>(cl-dolist (pattern-fn-pair org-books-url-pattern-dispatches)</code></p> <p><code>(when (s-matches? (car pattern-fn-pair) url-host-string)</code></p> <p><code>(setq output (funcall (cdr pattern-fn-pair) url))</code></p> <p><code>(cl-return)))</code></p> <p><code>(if (eq output 'no-match)</code></p> <p><code>(error (format "Url %s not understood" url))</code></p> <p><code>output)))</code></p> <p>​</p> <p>What is going wrong...I am not able to figure it out. I am sure , that I haven't change the file to something else.</p> <p>Shed some light.</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/unixbhaskar"> /u/unixbhaskar </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/ppan1g/well_book_capture_template_code_not_working_it/">[link]</a></span>   <span><a href="https://www.reddit.com/r/emacs/comments/ppan1g/well_book_capture_template_code_not_working_it/">[comments]</a></span>
|
|
@ -1 +0,0 @@
|
|||
<a href='/story.php?story_fbid=115670427229432&substory_index=0&id=115628967233578&m_entstream_source=timeline&__tn__=%2As%2As-R' aria-label='Open story' class='_5msj'></a><a href='/NorthernValleyTFC/photos/a.115628997233575/115670237229451/?type=3&source=48&__tn__=EH-R' class='_39pi'><img src='https://scontent.fict1-1.fna.fbcdn.net/v/t1.6435-9/p320x320/151177197_115670240562784_7305556504870656520_n.png?_nc_cat=105&ccb=1-5&_nc_sid=85a577&_nc_ohc=xoFCcgZhpMsAX_xHxjk&_nc_ht=scontent.fict1-1.fna&oh=32d93254ad4c0569aff699160fc7ab50&oe=61688D03' /></a>
|
|
@ -1 +0,0 @@
|
|||
<!-- SC_OFF --><div class="md"><p>Hi there. I'm a recent Emacs convert using Spacemacs. I was wondering if anyone else is using Emacs to write Python 3.10 code, specifically using the new <code>match</code> and <code>case</code> keywords. When I try to use them, Emacs doesn't recognize them as keywords, and so doesn't understand that it should indent the following lines.</p> <p>If I understand correctly, this is handled by <code>python.el</code>. Has there been any movement on adding support for the new keywords? And where could I go to find out, follow progress, or possibly contribute?</p> <p>For reference, I'm using Emacs 27.2 and the built-in <code>python.el</code>. Thank you!</p> </div><!-- SC_ON -->   submitted by   <a href="https://www.reddit.com/user/javajunkie314"> /u/javajunkie314 </a> <br/> <span><a href="https://www.reddit.com/r/emacs/comments/r7p73i/emacs_for_python_310/">[link]</a></span>   <span><a href="https://www.reddit.com/r/emacs/comments/r7p73i/emacs_for_python_310/">[comments]</a></span>
|
|
@ -1 +0,0 @@
|
|||
<table> <tr><td> <a href="https://www.reddit.com/r/unixporn/comments/r86u79/bspwm_sxhkd_picom_polybar_bubatz/"> <img src="https://preview.redd.it/dn6heyqrnd381.png?width=640&crop=smart&auto=webp&s=d1bd08605ae53ae3f2bee1f7696399239b608b1b" alt="[bspwm + sxhkd + picom + polybar] bubatz" title="[bspwm + sxhkd + picom + polybar] bubatz" /> </a> </td><td>   submitted by   <a href="https://www.reddit.com/user/flimosch"> /u/flimosch </a> <br/> <span><a href="https://i.redd.it/dn6heyqrnd381.png">[link]</a></span>   <span><a href="https://www.reddit.com/r/unixporn/comments/r86u79/bspwm_sxhkd_picom_polybar_bubatz/">[comments]</a></span> </td></tr></table>
|
Loading…
Add table
Add a link
Reference in a new issue