public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* Using fancy_lists
@ 2019-08-27 17:00 Don Raikes
  2019-08-27 19:16 ` John MacFarlane
  0 siblings, 1 reply; 8+ messages in thread
From: Don Raikes @ 2019-08-27 17:00 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

[-- Attachment #1: Type: text/plain, Size: 1635 bytes --]

Hello,

 

I am new to pandoc (this week only), and I wish to create an outline for a project.

 

I want the outline to be of the standard type:

 

I.                  First topic

a.      First sub-topic

b.      Second sub-topic

                                                    i.     First sub-sub-topic

 

II.                Second topic

a.      First sub-topic

 

III.              etc

 

From the documentation, it looks like using fancy_lists extension is the way to do it, but I am unclear exactly how to:

 

Invoke the fancy_lists extension

Actually create the outline list items.

 

Any tips / pointers / examples would be greatly appreciated.

 

BTW: I am writing in markdown and converting into docx if that makes any difference.

-- 
Thanks, Donald 

Accessibility, like security, is better when built-in from the beginning rather than bolted on at the end.


http://www.oracle.com/
Donald Raikes | Accessibility Specialist
Mobile: HYPERLINK "tel:+15202717608"+15202717608 | VOIP: HYPERLINK "tel:+15205744033"+15205744033 
Oracle Accessibility Program Office
| Tucson, Arizona 

http://www.oracle.com/commitment

Oracle is committed to developing practices and products that help protect the environment

 

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/11acdbf7-7010-4389-b3df-c5682ae0232b%40default.

[-- Attachment #2: Type: text/html, Size: 10532 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Using fancy_lists
  2019-08-27 17:00 Using fancy_lists Don Raikes
@ 2019-08-27 19:16 ` John MacFarlane
       [not found]   ` <yh480kftlmzaf2.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: John MacFarlane @ 2019-08-27 19:16 UTC (permalink / raw)
  To: Don Raikes, pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw


fancy_lists is enabled by default for pandoc's markdown input,
so you don't need any special options, just '-f markdown'.

However, you should review the documentation for list nesting
with sublists.

Don Raikes <DON.RAIKES-MouhYhfBpPxXrIkS9f7CXA@public.gmane.org> writes:

> Hello,
>
>  
>
> I am new to pandoc (this week only), and I wish to create an outline for a project.
>
>  
>
> I want the outline to be of the standard type:
>
>  
>
> I.                  First topic
>
> a.      First sub-topic
>
> b.      Second sub-topic
>
>                                                     i.     First sub-sub-topic
>
>  
>
> II.                Second topic
>
> a.      First sub-topic
>
>  
>
> III.              etc
>
>  
>
> From the documentation, it looks like using fancy_lists extension is the way to do it, but I am unclear exactly how to:
>
>  
>
> Invoke the fancy_lists extension
>
> Actually create the outline list items.
>
>  
>
> Any tips / pointers / examples would be greatly appreciated.
>
>  
>
> BTW: I am writing in markdown and converting into docx if that makes any difference.
>
> -- 
> Thanks, Donald 
>
> Accessibility, like security, is better when built-in from the beginning rather than bolted on at the end.
>
>
> http://www.oracle.com/
> Donald Raikes | Accessibility Specialist
> Mobile: HYPERLINK "tel:+15202717608"+15202717608 | VOIP: HYPERLINK "tel:+15205744033"+15205744033 
> Oracle Accessibility Program Office
> | Tucson, Arizona 
>
> http://www.oracle.com/commitment
>
> Oracle is committed to developing practices and products that help protect the environment
>
>  
>
> -- 
> You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/11acdbf7-7010-4389-b3df-c5682ae0232b%40default.


^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: Using fancy_lists
       [not found]   ` <yh480kftlmzaf2.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
@ 2019-08-28 16:41     ` Don Raikes
  2019-08-28 18:52       ` John MacFarlane
  0 siblings, 1 reply; 8+ messages in thread
From: Don Raikes @ 2019-08-28 16:41 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

	Thanks John,

When I convert a markdown file based on hyour answer word is not treating the outline as an outline.  I.e. I can't move an item in the outline to a different level simply by using tab or backspace.

--  code snippet --
# Outline Test

This is some introductory text.

I)	Topic 1
II)	Topic 2
III)	Topic 3
-- end code snippet --

Command to convert:
C:\> pandoc -f markdown --atx -o outline.docx outline.md

I have a fairly large project at work and need to get it outlined and want to use markdown to do it even though the final presentation will be in word format.

Thanks for any suggestions.

Donald
-----Original Message-----
From: John MacFarlane <jgm-TVLZxgkOlNX2fBVCVOL8/A@public.gmane.org> 
Sent: Tuesday, August 27, 2019 12:16 PM
To: Don Raikes <don.raikes-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>; pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
Subject: Re: Using fancy_lists


fancy_lists is enabled by default for pandoc's markdown input, so you don't need any special options, just '-f markdown'.

However, you should review the documentation for list nesting with sublists.

Don Raikes <DON.RAIKES-MouhYhfBpPxXrIkS9f7CXA@public.gmane.org> writes:

> Hello,
>
>  
>
> I am new to pandoc (this week only), and I wish to create an outline for a project.
>
>  
>
> I want the outline to be of the standard type:
>
>  
>
> I.                  First topic
>
> a.      First sub-topic
>
> b.      Second sub-topic
>
>                                                     i.     First sub-sub-topic
>
>  
>
> II.                Second topic
>
> a.      First sub-topic
>
>  
>
> III.              etc
>
>  
>
> From the documentation, it looks like using fancy_lists extension is the way to do it, but I am unclear exactly how to:
>
>  
>
> Invoke the fancy_lists extension
>
> Actually create the outline list items.
>
>  
>
> Any tips / pointers / examples would be greatly appreciated.
>
>  
>
> BTW: I am writing in markdown and converting into docx if that makes any difference.
>
> --
> Thanks, Donald
>
> Accessibility, like security, is better when built-in from the beginning rather than bolted on at the end.
>
>
> http://www.oracle.com/
> Donald Raikes | Accessibility Specialist
> Mobile: HYPERLINK "tel:+15202717608"+15202717608 | VOIP: HYPERLINK 
> "tel:+15205744033"+15205744033 Oracle Accessibility Program Office
> | Tucson, Arizona
>
> http://www.oracle.com/commitment
>
> Oracle is committed to developing practices and products that help 
> protect the environment
>
>  
>
> --
> You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_pandoc-2Ddiscuss_11acdbf7-2D7010-2D4389-2Db3df-2Dc5682ae0232b-2540default&d=DwIBAg&c=RoP1YumCXCgaWHvlZYR8PZh8Bv7qIrMUB65eapI_JnE&r=RSYNyNFr7Oj1BRE0qW_8pVA2z0qhUeWtOTBuXmZp9uE&m=1_mFfPyunK3vR6VGqTpW6Q-L1x-qjt5IQpDg119isqg&s=SEJRs6WbZniZNy1gOc4v6vfL0rmAGR4P-GiR5zM1jKg&e= .

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/f8828d84-d79b-4ea3-81d0-f259b9f7c632%40default.


^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: Using fancy_lists
  2019-08-28 16:41     ` Don Raikes
@ 2019-08-28 18:52       ` John MacFarlane
       [not found]         ` <yh480k4l21xguy.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: John MacFarlane @ 2019-08-28 18:52 UTC (permalink / raw)
  To: Don Raikes, pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw


It should be coming through in Word as a list.  I don't know
what more would be required for outline mode to work.  Does
outline mode typically work for any list?  (Sorry, not a
Word user.)  Does it work for you if you create lists with
regular non-fancy markers?

Don Raikes <DON.RAIKES-MouhYhfBpPxXrIkS9f7CXA@public.gmane.org> writes:

> 	Thanks John,
>
> When I convert a markdown file based on hyour answer word is not treating the outline as an outline.  I.e. I can't move an item in the outline to a different level simply by using tab or backspace.
>
> --  code snippet --
> # Outline Test
>
> This is some introductory text.
>
> I)	Topic 1
> II)	Topic 2
> III)	Topic 3
> -- end code snippet --
>
> Command to convert:
> C:\> pandoc -f markdown --atx -o outline.docx outline.md
>
> I have a fairly large project at work and need to get it outlined and want to use markdown to do it even though the final presentation will be in word format.
>
> Thanks for any suggestions.
>
> Donald
> -----Original Message-----
> From: John MacFarlane <jgm-TVLZxgkOlNX2fBVCVOL8/A@public.gmane.org> 
> Sent: Tuesday, August 27, 2019 12:16 PM
> To: Don Raikes <don.raikes-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>; pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> Subject: Re: Using fancy_lists
>
>
> fancy_lists is enabled by default for pandoc's markdown input, so you don't need any special options, just '-f markdown'.
>
> However, you should review the documentation for list nesting with sublists.
>
> Don Raikes <DON.RAIKES-MouhYhfBpPxXrIkS9f7CXA@public.gmane.org> writes:
>
>> Hello,
>>
>>  
>>
>> I am new to pandoc (this week only), and I wish to create an outline for a project.
>>
>>  
>>
>> I want the outline to be of the standard type:
>>
>>  
>>
>> I.                  First topic
>>
>> a.      First sub-topic
>>
>> b.      Second sub-topic
>>
>>                                                     i.     First sub-sub-topic
>>
>>  
>>
>> II.                Second topic
>>
>> a.      First sub-topic
>>
>>  
>>
>> III.              etc
>>
>>  
>>
>> From the documentation, it looks like using fancy_lists extension is the way to do it, but I am unclear exactly how to:
>>
>>  
>>
>> Invoke the fancy_lists extension
>>
>> Actually create the outline list items.
>>
>>  
>>
>> Any tips / pointers / examples would be greatly appreciated.
>>
>>  
>>
>> BTW: I am writing in markdown and converting into docx if that makes any difference.
>>
>> --
>> Thanks, Donald
>>
>> Accessibility, like security, is better when built-in from the beginning rather than bolted on at the end.
>>
>>
>> http://www.oracle.com/
>> Donald Raikes | Accessibility Specialist
>> Mobile: HYPERLINK "tel:+15202717608"+15202717608 | VOIP: HYPERLINK 
>> "tel:+15205744033"+15205744033 Oracle Accessibility Program Office
>> | Tucson, Arizona
>>
>> http://www.oracle.com/commitment
>>
>> Oracle is committed to developing practices and products that help 
>> protect the environment
>>
>>  
>>
>> --
>> You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
>> To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>> To view this discussion on the web visit https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_pandoc-2Ddiscuss_11acdbf7-2D7010-2D4389-2Db3df-2Dc5682ae0232b-2540default&d=DwIBAg&c=RoP1YumCXCgaWHvlZYR8PZh8Bv7qIrMUB65eapI_JnE&r=RSYNyNFr7Oj1BRE0qW_8pVA2z0qhUeWtOTBuXmZp9uE&m=1_mFfPyunK3vR6VGqTpW6Q-L1x-qjt5IQpDg119isqg&s=SEJRs6WbZniZNy1gOc4v6vfL0rmAGR4P-GiR5zM1jKg&e= .
>
> -- 
> You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/f8828d84-d79b-4ea3-81d0-f259b9f7c632%40default.

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/yh480k4l21xguy.fsf%40johnmacfarlane.net.


^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: Using fancy_lists
       [not found]         ` <yh480k4l21xguy.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
@ 2019-08-28 19:23           ` Don Raikes
  2019-08-29  0:51             ` John MacFarlane
  0 siblings, 1 reply; 8+ messages in thread
From: Don Raikes @ 2019-08-28 19:23 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

Yes if I use just regular list markup, converting it to docx does create regular lists, but with the fancy_list format it is not being presented as a listin the docx file.
-----Original Message-----
From: John MacFarlane <jgm-TVLZxgkOlNX2fBVCVOL8/A@public.gmane.org> 
Sent: Wednesday, August 28, 2019 11:52 AM
To: Don Raikes <don.raikes-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>; pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
Subject: RE: Using fancy_lists


It should be coming through in Word as a list.  I don't know what more would be required for outline mode to work.  Does outline mode typically work for any list?  (Sorry, not a Word user.)  Does it work for you if you create lists with regular non-fancy markers?

Don Raikes <DON.RAIKES-MouhYhfBpPxXrIkS9f7CXA@public.gmane.org> writes:

> 	Thanks John,
>
> When I convert a markdown file based on hyour answer word is not treating the outline as an outline.  I.e. I can't move an item in the outline to a different level simply by using tab or backspace.
>
> --  code snippet --
> # Outline Test
>
> This is some introductory text.
>
> I)	Topic 1
> II)	Topic 2
> III)	Topic 3
> -- end code snippet --
>
> Command to convert:
> C:\> pandoc -f markdown --atx -o outline.docx outline.md
>
> I have a fairly large project at work and need to get it outlined and want to use markdown to do it even though the final presentation will be in word format.
>
> Thanks for any suggestions.
>
> Donald
> -----Original Message-----
> From: John MacFarlane <jgm-TVLZxgkOlNX2fBVCVOL8/A@public.gmane.org>
> Sent: Tuesday, August 27, 2019 12:16 PM
> To: Don Raikes <don.raikes-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>; 
> pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> Subject: Re: Using fancy_lists
>
>
> fancy_lists is enabled by default for pandoc's markdown input, so you don't need any special options, just '-f markdown'.
>
> However, you should review the documentation for list nesting with sublists.
>
> Don Raikes <DON.RAIKES-MouhYhfBpPxXrIkS9f7CXA@public.gmane.org> writes:
>
>> Hello,
>>
>>  
>>
>> I am new to pandoc (this week only), and I wish to create an outline for a project.
>>
>>  
>>
>> I want the outline to be of the standard type:
>>
>>  
>>
>> I.                  First topic
>>
>> a.      First sub-topic
>>
>> b.      Second sub-topic
>>
>>                                                     i.     First sub-sub-topic
>>
>>  
>>
>> II.                Second topic
>>
>> a.      First sub-topic
>>
>>  
>>
>> III.              etc
>>
>>  
>>
>> From the documentation, it looks like using fancy_lists extension is the way to do it, but I am unclear exactly how to:
>>
>>  
>>
>> Invoke the fancy_lists extension
>>
>> Actually create the outline list items.
>>
>>  
>>
>> Any tips / pointers / examples would be greatly appreciated.
>>
>>  
>>
>> BTW: I am writing in markdown and converting into docx if that makes any difference.
>>
>> --
>> Thanks, Donald
>>
>> Accessibility, like security, is better when built-in from the beginning rather than bolted on at the end.
>>
>>
>> http://www.oracle.com/
>> Donald Raikes | Accessibility Specialist
>> Mobile: HYPERLINK "tel:+15202717608"+15202717608 | VOIP: HYPERLINK
>> "tel:+15205744033"+15205744033 Oracle Accessibility Program Office
>> | Tucson, Arizona
>>
>> http://www.oracle.com/commitment
>>
>> Oracle is committed to developing practices and products that help 
>> protect the environment
>>
>>  
>>
>> --
>> You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
>> To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>> To view this discussion on the web visit https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_pandoc-2Ddiscuss_11acdbf7-2D7010-2D4389-2Db3df-2Dc5682ae0232b-2540default&d=DwIBAg&c=RoP1YumCXCgaWHvlZYR8PZh8Bv7qIrMUB65eapI_JnE&r=RSYNyNFr7Oj1BRE0qW_8pVA2z0qhUeWtOTBuXmZp9uE&m=1_mFfPyunK3vR6VGqTpW6Q-L1x-qjt5IQpDg119isqg&s=SEJRs6WbZniZNy1gOc4v6vfL0rmAGR4P-GiR5zM1jKg&e= .
>
> --
> You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit https://urldefense.proofpoint.com/v2/url?u=https-3A__groups.google.com_d_msgid_pandoc-2Ddiscuss_f8828d84-2Dd79b-2D4ea3-2D81d0-2Df259b9f7c632-2540default&d=DwIBAg&c=RoP1YumCXCgaWHvlZYR8PZh8Bv7qIrMUB65eapI_JnE&r=RSYNyNFr7Oj1BRE0qW_8pVA2z0qhUeWtOTBuXmZp9uE&m=kTApJ-XvOA0XJYG32vnyZWjU0h4KnrjJVZetvHSECtU&s=NQHYpd33CpzX3JoYiEIhkKf94nbLfwfWlIUBRqgxg8c&e= .

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/1aac3d4f-09bd-4926-af64-1bc80ebb050f%40default.


^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: Using fancy_lists
  2019-08-28 19:23           ` Don Raikes
@ 2019-08-29  0:51             ` John MacFarlane
       [not found]               ` <yh480kd0gox080.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
  0 siblings, 1 reply; 8+ messages in thread
From: John MacFarlane @ 2019-08-29  0:51 UTC (permalink / raw)
  To: Don Raikes, pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

Don Raikes <DON.RAIKES-MouhYhfBpPxXrIkS9f7CXA@public.gmane.org> writes:

> Yes if I use just regular list markup, converting it to docx does create regular lists, but with the fancy_list format it is not being presented as a listin the docx file.

That's strange. It works perfectly for me.
Have you said what version of pandoc you have?


^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: Using fancy_lists
       [not found]               ` <yh480kd0gox080.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
@ 2019-08-29 16:01                 ` Don Raikes
  2019-08-29 17:49                   ` John MacFarlane
  0 siblings, 1 reply; 8+ messages in thread
From: Don Raikes @ 2019-08-29 16:01 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

I am running pandoc 2.7.3 on windows 10.

I also have access to an installation of pandoc 2.2.1 on debian buster. 2.2.1 seems to be the latest release of pandoc in the repositories.
-----Original Message-----
From: John MacFarlane <jgm-TVLZxgkOlNX2fBVCVOL8/A@public.gmane.org> 
Sent: Wednesday, August 28, 2019 5:52 PM
To: Don Raikes <don.raikes-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>; pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
Subject: RE: Using fancy_lists

Don Raikes <DON.RAIKES-MouhYhfBpPxXrIkS9f7CXA@public.gmane.org> writes:

> Yes if I use just regular list markup, converting it to docx does create regular lists, but with the fancy_list format it is not being presented as a listin the docx file.

That's strange. It works perfectly for me.
Have you said what version of pandoc you have?


^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: Using fancy_lists
  2019-08-29 16:01                 ` Don Raikes
@ 2019-08-29 17:49                   ` John MacFarlane
  0 siblings, 0 replies; 8+ messages in thread
From: John MacFarlane @ 2019-08-29 17:49 UTC (permalink / raw)
  To: Don Raikes, pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw


Hm. Since I can't reproduce the issue, I'm not sure how to help.
Did you use *exactly* the markdown sample you included in your
email?  Spacing can matter with lists, particularly with Roman
numeral lists (two spaces are needed after I. in order to avoid
confusion with an initial).

Don Raikes <DON.RAIKES-MouhYhfBpPxXrIkS9f7CXA@public.gmane.org> writes:

> I am running pandoc 2.7.3 on windows 10.
>
> I also have access to an installation of pandoc 2.2.1 on debian buster. 2.2.1 seems to be the latest release of pandoc in the repositories.
> -----Original Message-----
> From: John MacFarlane <jgm-TVLZxgkOlNX2fBVCVOL8/A@public.gmane.org> 
> Sent: Wednesday, August 28, 2019 5:52 PM
> To: Don Raikes <don.raikes-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org>; pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
> Subject: RE: Using fancy_lists
>
> Don Raikes <DON.RAIKES-MouhYhfBpPxXrIkS9f7CXA@public.gmane.org> writes:
>
>> Yes if I use just regular list markup, converting it to docx does create regular lists, but with the fancy_list format it is not being presented as a listin the docx file.
>
> That's strange. It works perfectly for me.
> Have you said what version of pandoc you have?
>
> -- 
> You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/d04583f4-68eb-474e-99c7-006bdc52d8de%40default.


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-08-29 17:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-27 17:00 Using fancy_lists Don Raikes
2019-08-27 19:16 ` John MacFarlane
     [not found]   ` <yh480kftlmzaf2.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
2019-08-28 16:41     ` Don Raikes
2019-08-28 18:52       ` John MacFarlane
     [not found]         ` <yh480k4l21xguy.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
2019-08-28 19:23           ` Don Raikes
2019-08-29  0:51             ` John MacFarlane
     [not found]               ` <yh480kd0gox080.fsf-pgq/RBwaQ+zq8tPRBa0AtqxOck334EZe@public.gmane.org>
2019-08-29 16:01                 ` Don Raikes
2019-08-29 17:49                   ` John MacFarlane

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).