How do I stop Redmine from automatically referencing issues? - redmine

When I am working on a page for the Wiki, I would like to put a couple of numerical list items and have centred image on the page inbetween steps, like so:
# Step 1
# Step 2
p=. !someimage.png!
Figure 1 - Image Caption
#3 Step 3
# Step 4
But when Redmine renders Step 3, it automatically references Issue #3 instead of continuing the numbering at "3." I have read on the Textile Syntax Wiki that using #3 would start the numbering at "3." but this is not the case in the Redmine Wiki.
Is there any way to stop this behaviour? I have looked into other solutions but I was not able to retain centred images when trying to force the ordered list to continue numbering.
Thanks :)

This should work
# Step 1
# Step 2
p=. !someimage.png!
Figure 1 - Image Caption
# Step 3
# Step 4
Remind: Redmine is based on textile but has its own tags.

Related

Using RegEx in Google Analytics for Goal Setting - Iss

Screenshot of GA goal setup
I'm trying to set up a goal in Google Analytics using regular expression. It's part of an job application funnel that contains 4 steps where the end of the URL equals /en/apply?&step=1. Where 1 is the first step and 4 the confirmation page of the application procedure. I've been trying to make it work but without succes (yet). How should I write this?
This is what I'm ussing now for step 1:
https://careers.something.com/job-details-page/en/apply?&step=1
.*\/en\/apply\?&step=1
If it works for step 1 - I'll change it to step 4 and switch the funnel slider for easier interpretation.
Can anyone point me to the right direction? See printscreen below for complete picture.
You have to set your regex in Destination Field (with Regular Expression type selected) but with number 4 (because it is the actual goal), like this:
.*\/en\/apply\?&step=4
Then you can add other step in the funnel (enabling the toggle Funnel), each with the desired number:
.*\/en\/apply\?&step=1
.*\/en\/apply\?&step=2
.*\/en\/apply\?&step=3

Regex to reduce comma separated category ids to top level id

Very new to regex so question one would be is this possible?
I have products that can be in multiple categories/ subcategories, but for reporting, I just want to attribute them once per top category.
Original data:
1010,1012,1012610,1014243,10147048956,2010,201150205,2011506,2015470
Desired Result:
1010,1012,1014,2010,2011,2015
Details
1010 is unchanged
1012,1012610 reduce to 1 instance of 1012
1014243,10147048956 reduce to 1 instance of 1014
2010 is unchanged
201150205,2011506 reduce to 1 instance of 2011
2015470 is reduced to 2015
My current pattern (?|(10..)|(20..)) works well with exception to the following bold sections:
1010,1012,1012610,1014243,10147048956,2010,201150205,2011506,2015470
As for reducing, I am at a loss for where to start.
Thank you in advance for any assistance or direction.
\b(\w{4})
1010,1012,1012610,1014243,10147048956,2010,201150205,2011506,2015470
after applying regex "\b(\w{4})" can you collect values in Set it will make those element unique.

Merging cells in openoffice deleting specific whitespace

Ok, so what I have is going to be 3 cells of data that I need to merge into a link to pictures in my store. What I am looking for is an easy way to do this without double clicking and cntl v pasting for 4x at 100+ lines per page...
Cell 1. Cell 2. Cell 3
Assets/ name. .jpg
Needs to be.... assets/name.jpg
This seems simple, but the problem is most of the names are 2 words and even the single word names when merged look like this...... assets/ name name .jpg
Giving me a space after/ and a space after the second name. If the "name" I am merging with has 2 or more parts I still need to keep those spaces intact or the link will not work the way it's set up currently. I may need to rename the pictures into 1 solid word just for linking purposes, but hoping to avoid an extra step.
Is there a way to merge and remove the spaces I need gone to create the link? I have done a couple pages the hard way, not fun when I have 200+ pages to do.
Any help is appreciated.
Thank you.
Jerry
It seems to me possible that an answer to a completely different Q may be of interest to you:
=TRIM(LOWER((A1))&TRIM(A2)&TRIM(A3))

How to add "Other Category" for sentences that do not match predefined 4 categories?

I am using SMO algorithm in weka to classify sentences in 4 categories. My question is how i can add other or unclassified category for sentences that do not match the 4 predefined categories. What is the best approach to handle this problem.
Thank You.
The answer is to build a classifier on top by joining all 4 categories.
http://weka.sourceforge.net/packageMetaData/oneClassClassifier/
This has to be installed separately from tools>package manager.
Add the jar from
C:\Users\username\wekafiles\packages\oneClassClassifier\oneClassClassifier.jar

How to avoid checkout options in opencart 2?

**Checkout**
Step 1: Checkout Options
Step 2: Billing Details
Step 3: Delivery Details -Not required : Want to move it
Step 4: Delivery Method -Not required : Want to move it
Step 5: Payment Method
Step 6: Confirm Order
How can I make the payment simpler by jumping straight step 1 to step 5? I don't need step 3 and 4!
Go to the product's management page and change "requires shipping" from "yes" to "no". If all products in the basket have this setting, steps 3 and 4 will be skipped automatically.
If all products on your site are like this, you might want to also edit your language files, changing the numbering for the last two steps to 3 and 4 instead.