Re: org-mode export toggle checkboxes

2020-12-27 Thread Zelphir Kaltstahl
Thanks for that! Going to try it soon : ) On 12/4/20 7:10 AM, Kyle Meyer wrote: > Zelphir Kaltstahl writes: > >> Hello Emacs and Org-Mode Users, >> >> I have a question regarding the export options of org-mode. >> >> Is there a way to toggle, whether checkboxes are exported to markdown >> and pla

Re: Yet another browser extension for capturing notes - LinkRemark

2020-12-27 Thread Maxim Nikulin
On 26/12/2020 20:49, Ihor Radchenko wrote: > Maxim Nikulin writes: I have reordered some parts of discussion Also, do you pass any of the parsed metadata to org-protocol? If you do, it would be trivial to get it into capture templates on Elisp (and org-capture-ref) side. I decided that captu

A way to avoid unwanted new lines when using paragraph quotes?

2020-12-27 Thread Kashyap Chamarthy
Hi, folks — First of all, many thanks to the contributors for their work on Org-Mode. I'm a happy (novice) user; first time poster here. :-) I have a seemingly trivial aesthetic problem. I've attached the reproducer .org file and its HTML export to demonstrate it. I'm sure advanced users might

Can't activate orgmode after the installation of its git master version.

2020-12-27 Thread Hongyi Zhao
On Ubuntu 20.10, I compiled the latest git master version of emacs, but I can't activate the org-mode command from within it. So I try to install the orgmode using its git repository according to the official guidance [1] as shown below. $ git clone https://code.orgmode.org/bzg/org-mode.git Public

Re: A way to avoid unwanted new lines when using paragraph quotes?

2020-12-27 Thread Juan Manuel Macías
Hello, Kashyap Chamarthy writes: > Is there a way to avoid the said new lines in the above mentioned > examples? (NB: A space right _before_ the quote starts is okay.) Or > alternatively, is there a way to consistently force a new line in the > HTML export, after each of "Test 1", "Test 2", et

Re: Can't activate orgmode after the installation of its git master version.

2020-12-27 Thread tomas
On Sun, Dec 27, 2020 at 09:34:18PM +0800, Hongyi Zhao wrote: > On Ubuntu 20.10, I compiled the latest git master version of emacs, > but I can't activate the org-mode command from within it. So I try to install > the orgmode using its git repository according to the official guidance [1] as > shown

Re: Can't activate orgmode after the installation of its git master version.

2020-12-27 Thread Hongyi Zhao
On Sun, Dec 27, 2020 at 10:12 PM wrote: > > On Sun, Dec 27, 2020 at 09:34:18PM +0800, Hongyi Zhao wrote: > > On Ubuntu 20.10, I compiled the latest git master version of emacs, > > but I can't activate the org-mode command from within it. So I try to > > install > > the orgmode using its git repo

Re: Can't activate orgmode after the installation of its git master version.

2020-12-27 Thread Hongyi Zhao
On Sun, Dec 27, 2020 at 10:57 PM Hongyi Zhao wrote: > > On Sun, Dec 27, 2020 at 10:12 PM wrote: > > > > On Sun, Dec 27, 2020 at 09:34:18PM +0800, Hongyi Zhao wrote: > > > On Ubuntu 20.10, I compiled the latest git master version of emacs, > > > but I can't activate the org-mode command from withi

M-s is undefined.

2020-12-27 Thread Hongyi Zhao
Based on the document located at , I try the following instruction: M-S-LEFT (org-table-delete-column) Kill the current column. But the keystroke combination doesn't work as expected, instead it triggers the following info in the bottom

Re: [O] new links escaping mechanism causing some problems

2020-12-27 Thread Greg Minshall
hi, Eric, i wonder if you are still using ox-twbs? i like the look, but internal links (from the TOC, say) appear to be broken. cheers, Greg ps -- versions ox-twbs20200628.1949 installed org20201012 installed

Re: [PATCH] Apply emacs manual css to org pages

2020-12-27 Thread Amin Bandali
Hi Timothy, all, TEC writes: > Hi all, > > This is a quick patch to use the Emacs manual CSS with our generated Org > manual. > > You can see what the single-page version of this looks like here: > https://tecosaur.com/resources/org/doc/manual.html and the multi-page > here: https://tecosaur.com/

Re: A way to avoid unwanted new lines when using paragraph quotes?

2020-12-27 Thread Diego Zamboni
Hi Kashyap, The problem seems to be that when the HTML exporter finds more than one element within a list item, it wraps each one in its own set of =...= tags, which creates the additional space. You can see that this has nothing to do with the quotes, just inserting a second paragraph within the

Re: M-s is undefined.

2020-12-27 Thread Diego Zamboni
> > M-S-LEFT (org-table-delete-column) > Kill the current column. > > But the keystroke combination doesn't work as expected, instead it > triggers the following info in the bottom minibuffer: > M-s is undefined. Which keys, exactly, are you pressing? M-S-Left in Emacs Key Notation ( https://ww

Re: Can't activate orgmode after the installation of its git master version.

2020-12-27 Thread tomas
On Sun, Dec 27, 2020 at 11:14:56PM +0800, Hongyi Zhao wrote: [...] > I finally figured out the following initialization code for orgmode > based on your above wonderful notes: > > (add-to-list 'load-path > "~/Public/repo/code.orgmode.org/bzg/org-mode.git/lisp") > (add-to-list 'load-path > "~/Pu

Bug: Tildes in URL impact visible link text [9.3 (release_9.3 @ /usr/share/emacs/27.1/lisp/org/)]

2020-12-27 Thread Chris Hunt
I'm trying to create a link in an org file with this URL: https://console.aws.amazon.com/cloudwatch/home?region=us-east-1#metricsV2:graph=~(view~'timeSeries~stacked~false~metrics~(~(~'CWAgent~'backup_time~'host~'desktop~'metric_type~'timing))~region~'us-east-1);query=~'*7bCWAgent*2chost*2cmet

Re: Bug: Tildes in URL impact visible link text [9.3 (release_9.3 @ /usr/share/emacs/27.1/lisp/org/)]

2020-12-27 Thread Juan Manuel Macías
Hello, I think the problem comes because in that url the tilde does not have an escape character. If it's just that case, you can try replacing each tilde with %7E (see https://www.w3schools.com/tags/ref_urlencode.asp). That way the link description would have to be formatted correctly, without sp

Re: A way to avoid unwanted new lines when using paragraph quotes?

2020-12-27 Thread Kashyap Chamarthy
On Sun, Dec 27, 2020 at 4:53 PM Diego Zamboni wrote: > > Hi Kashyap, Hi, Diego > The problem seems to be that when the HTML exporter finds more than one > element within a list item, it wraps each one in its own set of =...= > tags, which creates the additional space. You can see that this has

Re: A way to avoid unwanted new lines when using paragraph quotes?

2020-12-27 Thread Juan Manuel Macías
Hello again Kashyap, Kashyap Chamarthy writes: > Hmm, that fixes the new line before the "sub bullet under test 3, with > a quote". However, a new line still remains after the quote ends (and > before the "Test 4" starts). Is it possible to nuke that too? If > not, that's okay, I can live wit

Re: Bug: Tildes in URL impact visible link text [9.3 (release_9.3 @ /usr/share/emacs/27.1/lisp/org/)]

2020-12-27 Thread tomas
On Sun, Dec 27, 2020 at 07:12:42PM +0100, Juan Manuel Macías wrote: > Hello, > > I think the problem comes because in that url the tilde does not have an > escape character. If it's just that case, you can try replacing each > tilde with %7E (see > https://www.w3schools.com/tags/ref_urlencode.asp)

Re: A way to avoid unwanted new lines when using paragraph quotes?

2020-12-27 Thread Kashyap Chamarthy
On Sun, Dec 27, 2020 at 8:17 PM Juan Manuel Macías wrote: > > Hello again Kashyap, Hey, Juan > Kashyap Chamarthy writes: > > > Hmm, that fixes the new line before the "sub bullet under test 3, with > > a quote". However, a new line still remains after the quote ends (and > > before the "Test 4

Re: A way to avoid unwanted new lines when using paragraph quotes?

2020-12-27 Thread Diego Zamboni
> > Hmm, that fixes the new line before the "sub bullet under test 3, with > a quote". However, a new line still remains after the quote ends (and > before the "Test 4" starts). Is it possible to nuke that too? If > not, that's okay, I can live with it. :-) > That should be possible with CSS as

Re: [PATCH] Apply emacs manual css to org pages

2020-12-27 Thread Samuel Wales
i like the black bg, the no issues with paragraph width. On 12/22/20, TEC wrote: > Hi all, > > This is a quick patch to use the Emacs manual CSS with our generated Org > manual. > > You can see what the single-page version of this looks like here: > https://tecosaur.com/resources/org/doc/manual.

Re: Bug: Tildes in URL impact visible link text [9.3 (release_9.3 @ /usr/share/emacs/27.1/lisp/org/)]

2020-12-27 Thread Juan Manuel Macías
Hello, writes: > This would be a bug: tilde is an allowed URI character [1] You're right. I have also noticed that if I write links like these: [[*foo ~foo~ foo]][[foo]] [[*foo =foo= foo]][[foo]] There is an anomaly in the description similar to what Chris comments in his email... Regards,

Re: [PATCH] Apply emacs manual css to org pages

2020-12-27 Thread Samuel Wales
if i were to make any /tiny nit-level/ suggestions from my pov it would be somewhat wider margins, not pure white but slightly [so still /very/ high contrast] warmer for fg, and some less-blue for links [but i realize blue is common]. i would also do [ha ha, as if i knew what to do or even whether

Re: [PATCH] Apply emacs manual css to org pages

2020-12-27 Thread Samuel Wales
i wonder if css makes it possible to have wider margins /except/ for tables and stuch. or perhaps that is consiedered bad style. but it would be accessible/functional. but i am just glad that it is only tables that need horizontal scrolling. On 12/27/20, Samuel Wales wrote: > if i were to make

Re: Bug: Tildes in URL impact visible link text [9.3 (release_9.3 @ /usr/share/emacs/27.1/lisp/org/)]

2020-12-27 Thread Chris Hunt
> If it's just that case, you can try replacing each > tilde with %7E (see > https://www.w3schools.com/tags/ref_urlencode.asp). That way the > link description would have to be formatted correctly, without spurious > characters. That's a good workaround, thank you. Manually replacing "~" in the UR

Re: Can't activate orgmode after the installation of its git master version.

2020-12-27 Thread Hongyi Zhao
On Mon, Dec 28, 2020 at 12:18 AM wrote: > > On Sun, Dec 27, 2020 at 11:14:56PM +0800, Hongyi Zhao wrote: > > [...] > > > I finally figured out the following initialization code for orgmode > > based on your above wonderful notes: > > > > (add-to-list 'load-path > > "~/Public/repo/code.orgmode.org

Re: M-s is undefined.

2020-12-27 Thread Hongyi Zhao
On Mon, Dec 28, 2020 at 12:02 AM Diego Zamboni wrote: >> >> M-S-LEFT (org-table-delete-column) >> Kill the current column. >> >> But the keystroke combination doesn't work as expected, instead it >> triggers the following info in the bottom minibuffer: >> M-s is undefined. > > > Which keys, exact

Let emacs align all columns automatically on-the-fly within orgmode.

2020-12-27 Thread Hongyi Zhao
When editing a table in orgmode, the columns become no longer aligned. How to let emacs align all columns automatically on-the-fly within orgmode? Regards -- Assoc. Prof. Hongyi Zhao Theory and Simulation of Materials Hebei Polytechnic University of Science and Technology engineering NO. 552 Nor

Re: [PATCH] Apply emacs manual css to org pages

2020-12-27 Thread TEC
Hi Samuel, We could add some of our own CSS, but that would have us deviate from the Emacs manual. It's worth asking if we want to do that IMO. -- Timothy Samuel Wales writes: > i wonder if css makes it possible to have wider margins /except/ for > tables and stuch. or perhaps that is consi

Re: [PATCH] Apply emacs manual css to org pages

2020-12-27 Thread Samuel Wales
yes, presumably some of these topics apply to emacs style. On 12/27/20, TEC wrote: > > Hi Samuel, > > We could add some of our own CSS, but that would have us deviate from > the Emacs manual. It's worth asking if we want to do that IMO. > > -- > Timothy > > Samuel Wales writes: > >> i wonder if